Sep 29, 2016

Java 8: Streams in Hibernate and Beyond

In version 5.2 Hibernate has moved to Java 8 as base line. Keeping up with the new functional paradigm of Java 8 with lambdas and streams, Hibernate 5.2 also supports handling a query result set as a stream. Admittedly a small addition to the API, streams add significant value by allowing the Hibernate user to leverage streams parallelism and functional programming without creating any custom adaptors.

This post will elaborate on the added superficially small but fundamentally important streams feature of Hibernate 5.2 and then discuss how the Java 8 stream ORM Speedment takes the functional paradigm further by removing the language barrier and thus enabling a clean declarative design.

The following text will assume general knowledge of relational databases and the concept of ORM in particular. Without a basic knowledge of Java 8 streams and lambdas the presentation will probably seem overly abstract since basic features will be mentioned without further elaboration.

Imperative Processing of a Query Result

To contrast different approaches to handling the data from a relational database via Hibernate, we consider an example that despite its simplicity illustrates the big picture - an HQL query produces a set of Java objects that are further processed in the JVM. We start out fully imperative and gradually move towards a declarative design.

The table we use is a table of Hares, where a Hare has a name and an id.


CREATE TABLE `hare` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(45) NOT NULL,
  PRIMARY KEY (`id`)
);

To avoid discussing the query language per se, we use an example of a simplistic HQL query that creates a result set containing all the contents of a table of the database. The naïve approach to finding the item we are looking for would be to iterate over the data of the table as follows.


List<Hare> hares = session.createQuery("SELECT h FROM Hare h", Hare.class).getResultList();
for (Hare hare : hares) {
  if (hare.getId() == 1) {
    System.out.println(hare.getName());
  }
}

Note how the design of the query result handling is fully imperative. The implementation clearly states a step-by-step instruction of how to iterate over the elements and what to do with each element. By the end of the day, when it is time to run the program, all programs are in a sense imperative since the processor will need a very explicit sequence of instrucitons to execute. The imperative approach to programming may therefore seem the most intuitive.

Declaring the Goal, Receiving the Path

In contrast to the imperative design, the declarative approach focuses on what to be done, rather than on how to do it. This does not just tend to create more concise and elegant programs, but introduces a fundamental advantage as it allows the computer to figure out the transition from what to how. Sometimes without even thinking about it, many programmers are used to this approach in the realm of relational databases since the query language SQL is one of the most popular instances of declarative programming. Relieved of the details of exactly how the database engine will retrieve the data the designer can focus on what data to get, and then of course what to do with it after it is retrieved.

Java 8 streams and lambdas allow for a declarative approach to handling collections of data. Instead of listing a sequence of instructions to be carried out, the user of a stream first creates a pipeline of abstract operations to be carried out and when presented with a terminated pipeline, the stream implementation will figure out the imperative details.

Even before Hibernate 5.2, our running example could be ported to the Java 8 domain of streams by just adding a simple method call in the chain of operations since the List itself has a stream method.


List<Hare> hares = session.createQuery("SELECT h FROM Hare h", Hare.class).getResultList();
hares.stream()
  .filter(h -> h.getId() == 1)
  .forEach(h -> System.out.println(h.getName()));

While this example may seem similar to the imperative iteration in the previous design, the fundamental difference is that this program will first create a representation of the operations to be carried out and then lazy evaluate it. Thus, nothing actually happens to the items of the List until the full pipeline is created. We express what we want in terms of a functional composition of basic operations but do not lock down any decisions about how to execute the resulting function.

Since a major feature of functional programming is the compositional design, a more typical streams approach would be to chain stepwise operations on the data. To extract the name of the item, we may map the getter on the stream as follows.


List<Hare> hares = session.createQuery("SELECT h FROM Hare h", Hare.class).getResultList();
hares.stream()
  .filter(h -> h.getId() == 1)
  .map(Hare::getName)
  .forEach(System.out::println);
This pattern is suboptimal in many aspects. The obvious problem mentioned above of not using the database to filter the data in the first place is just one of them. Another problem is that this pattern forces the entire table to be loaded in JVM memory before the iteration can start. Notice how a List of Hare is populated in the first line of each code snippet. In order to start filtering that stream, we first instantiate the entire source of the stream. This means that in terms of memory footprint, the JVM memory will have to accommodate all Hares in the database - completely defeating the purpose of analyzing a set of data piece by piece in a stream.

Streaming a Result Set

As shown in the section above, naïve streams of query results in Hibernate before version 5.2 came with a steep price. Even though the underlying JDBC database driver handles the results of a query as a result set over which the user may iterate piece by piece, streams were not supported by the query result instance, forcing the functionally inclined developer to implement a stream source from the result set or go via an intermediate collection to get a stream without custom stream implementation.

With Hibernate 5.2, the query result can produce a stream, allowing the following minimal change in code which has the important advantage of not loading the entire table into an intermediate representation from which to source the stream.


session.createQuery("SELECT h FROM Hare h", Hare.class).stream()
  .filter(h -> h.getId() == 1)
  .map(Hare::getName)
  .forEach(System.out::println);
With this improvement, Java 8 streams are efficiently supported out-of-the-box by Hibernate without creating a custom stream source from the result set.

Selection by the Source

As mentioned above, the code snippets so far illustrate the general case of an HQL query generating a result which the JVM will use for some further processing. The details of the example reveal an almost offensive lack of interest in what the database can do for the user locally in terms of filtering data and that shortcoming will be adressed in the following.

The optimization desperately needed for this code is of course to adjust the query to allow the database to create a result set closer to the desired result of the operation. Focusing on just filtering the rows of the database and leaving the extraction of the columns to the JVM, the now familiar code snippet can be updated to the following.


session.createQuery("SELECT h FROM Hare h WHERE id = 1", Hare.class).stream()
  .map(Hare::getName)
  .forEach(System.out::println);

Note that this short piece of a program contains two declarative parts that require separate design with different kinds of considerations. Since the program is divided between what happens before and after the stream is created, any optimization will have to consider what happens on both sides of that barrier.

While this indeed is considerably more elegant than the first example (which admittedly for pedagogical reasons was designed to showcase potential for improvement rather than representing a real solution to a problem), the barrier poses a fundamental problem in terms of declarative design. It can rightfully be claimed that the program still is an imperative program composed by two declarative sub routines - first execute the query and then execute the Java part of the program. We may chose to refer to this as the language barrier, since the interface between the two declarative languages creates a barrier over which functional abstraction will not take place.

Enter Speedment - Going Fully Declarative

As discussed above, the advantages of Java 8 streams extend far beyond a more elegant syntax. The appeal of the functional approach to data processing also stems from among other things,
  • the seamless generalization to parallelism (expressing a design as a pipeline of operations is a great starting point for building a set of parallel pipes),
  • design by composition (reuse and modularization of code is encouraged by a paradigm of composing solutions as a composition of smaller operations),
  • higher order functions (behavior expressed as lambdas can be used as language entities such as parameters to methods) and
  • declarative programming (the application designer focuses on what is needed, the framework or stream primitives design determines the details about how, allowing lazy evaluation and shortcuts).

We have shown how the new Hibernate API of version 5.2 adds basic support for streams, which allows for a declarative approach to describing the operations applied to the dataset retrieved from the database. While this is a fundamental insight and improvement, the Hibernate design with a foundation in an explicit query language limits the reach of the declarative features of the resulting programs due to the language barrier constituted by the interface between two languages.

The logical next step along the path from iterative to declarative design would be to break the language barrier and that is what the Java stream ORM Speedment does.

In the Speedment framework, the resulting SQL query is the responsibility of the framework. Thus, a program leveraging Speedment does not use any explicit query language. Instead, all the data operations are expressed as a pipeline of operations on a stream of data and the framework will create the SQL query. Returning to our example, a Speedment based design could be expressed as follows.


hares.stream()
  .filter(h -> h.getId() == 1)
  .map(Hare::getName)
  .forEach(System.out::println);

The hares manager is the source of the stream of Hares. No SQL will be run or even created until the pipeline of operations is terminated. In the general case, the Speedment framework cannot optimize a SQL query followed by lambda filters since the lambda may contain any functionality. Therefore, the executed SQL query for this example will be a query for all data in the Hares table since the behavior of the first filter cannot be analysed by the framework. To allow the framework to optimize the pipeline, there is a need for a data structure representing the operations in terms of basic known building blocks instead of general lambda operations. This is supported by the framework and is expressed in a program as follows.


hares.stream()
  .filter(Hare.ID.equal(1))
  .map(Hare.NAME.getter())
  .forEach(System.out::println);

The pipeline of operations is now a clean data structure declaratively describing the operations without any runnable code, in contrast to a filter with a lambda. Thus, the SQL query that will be run is no longer a selection of all items of the table, but instead a query of the type "SELECT * FROM hares WHERE ID=1". Thus, by removing the language barrier, a fully declarative design is achieved. The program states "Find me the names of the hares of the database with ID 1" and it is up to the Speedment framework and the database engine to cooperate in figuring out how to turn that program into a set of instructions to execute.

This discussion uses an very simplistic example to illustrate a general point. Please see the Speedment API Quick Start for more elaborate examples of what the framework can do.

Edit: This text is also published at DZone: Streams in Hibernate and Beyond.

179 comments:

  1. <a href="http://asterhrittraining.com/>Best Training Institute in Chennai</a>

    ReplyDelete
  2. [url=http://www.asterhrittraining.com]Best Training Institute in Chennai[/url]

    ReplyDelete
  3. I haven't used this one for months, finally they have updated it! To be blunt, I barely can identify myself as an experienced java-coder, but 7 is the very version I had started with and, despite they said there was no big difference between that two, there actually was a lot of issue with working under java7! So far I glad that I have this website under my belt, so you ether can visit website to learn more java core and another 8 features as well as with brand new 9. I've tried out the last one for some time, so I wonder if hibernate would be migrated to that soon

    ReplyDelete
  4. Awesome and amazing articles are found in the Aortadigitalservices.com about Java Training
    Digital Marketing Training Institute in Chennai | SEO Training in Chennai

    ReplyDelete
  5. I’m really thereby very happy to you will definitely. Truly shape of physical you should be shown and necessarily a person’s difficulties false information which is while in the remaining blogs, forums. Satisfaction in your primary borrowing it all the best doctor. A Blogging Platform for Programmers. You can write your post with markdown.

    ReplyDelete
  6. Hey, wow all the posts are very informative for the people who visit this site. Good work! We also have a Website. Please feel free to visit our site. Thank you for sharing.
    Well written article.thank you for sharing.android java interview questions and answers for experienced

    ReplyDelete
  7. Very useful and information content has been shared out here, Thanks for sharing it.
    Visit Learn Digital Academy for more information on Digital marketing course in Bangalore.

    ReplyDelete
  8. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
    Java training in Chennai | Java training institute in Chennai | Java course in Chennai

    ReplyDelete
  9. Thank you for taking the time and sharing this information with us. It was indeed very helpful and insightful while being straight forward and to the point.
    Python Online certification training
    python Training institute in Chennai
    Python training institute in Bangalore

    ReplyDelete
  10. Want to play big in online casinos? Come to us at BGAOC and win around the clock. great casino with slots Play everywhere and always and you will always be with money.

    ReplyDelete
  11. Really very nice blog information for this one and more technical skills are improve,i like that kind of post.
    AWS Training in pune
    AWS Online Training

    ReplyDelete

  12. This blog is the general information for the feature. You got a good work for these blog.We have a developing our creative content of this mind.
    Thank you for this blog. This for very interesting and useful.
    Java training in Chennai
    Java training in Bangalore
    Java online training
    Java training in Pune
    Java training in Bangalore|best Java training in Bangalore

    ReplyDelete
  13. Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
    AWS training in chennai

    ReplyDelete
  14. Awesome article with useful content. This blog is very useful and will bookmark for further updates and have to follow.
    Selenium Training in Chennai | SeleniumTraining Institute in Chennai

    ReplyDelete
  15. Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
    AWS training in chennai
    Java training in chennai

    ReplyDelete
  16. The article is so informative. This is more helpful for our
    software testing training and placement
    selenium testing training in chennai. Thanks for sharing

    ReplyDelete
  17. I am really very happy to find this particular site. I just wanted to say thank you for this huge read!! I absolutely enjoying every petite bit of it and I have you bookmarked to test out new substance you post.

    Tableau online training

    ReplyDelete
  18. Thanks for such a great article here. I was searching for something like this for quite a long time and at last I’ve found it on your blog. It was definitely interesting for me to read  about their market situation nowadays.

    ReactJS Online Training

    ReplyDelete
  19. This is most informative and also this post most user friendly and super navigation to all posts... Thank you so much for giving this information to me..
    Oracle DBA Online Training

    ReplyDelete
  20. Learn the Python Training in Bangalore - Learn python course from ExcelR with real-time training from
    expert trainers and placement assistance.

    Understand the Python course with live project and assignments, which help you to be successfull in your Python domain.

    ExcelR is one of the best insutitute in Bangalore for top noted courses like, Data Science Course, Machine Learning Training, Digital Marketing
    class room training and live projects, and they do 100% job assistance.

    For more information about Pythone Training in Bangalore, please visit our website:


    For More Information about Top courses in Bangalore, click below
    https://www.excelr.com/

    Python course in Bangalore
    https://www.excelr.com/python-training-in-bangalore


    For more videos like Python course, Data Science course, Digital Marketing course & top selected courses.
    https://www.youtube.com/channel/UCF2_gALht1C1NsAm3fmFLsg

    ReplyDelete
  21. Thanks you for sharing this unique useful information content with us. Really awesome work. keep on blogging
    Salesforce online training

    ReplyDelete
  22. This comment has been removed by the author.

    ReplyDelete
  23. Hi,
    Good job & thank you very much for the new information, i learned something new. Very well written. It was sooo good to read and usefull to improve knowledge. Who want to learn this information most helpful. One who wanted to learn this technology IT employees will always suggest you take python training in bangalore. Because python course in Bangalore is one of the best that one can do while choosing the course.

    ReplyDelete
  24. All are saying the same thing repeatedly, but in your blog I had a chance to get some useful and unique information, I love your writing style very much, I would like to suggest your blog in my dude circle, so keep on updates.
    hadoop admin certification course

    ReplyDelete
  25. For AWS training in Bangalore, Visit:
    AWS training in Bangalore

    ReplyDelete
  26. The Information which you provided is very much useful for Agile Training Learners. Thank You for Sharing Valuable Information.google cloud platform training in bangalore

    ReplyDelete
  27. Excellent post for the people who really need information for this technology.selenium training in bangalore

    ReplyDelete
  28. Very useful and information content has been shared out here, Thanks for sharing it.blue prism training in bangalore

    ReplyDelete

  29. Really very nice blog information for this one and more technical skills are improve,i like that kind of post.

    Catering Services in Chennai
    Catering in Chennai
    Caters in Chennai
    Best Catering Services in Chennai

    ReplyDelete

  30. Thanks for Sharing This Article.It is very so much valuable content. I hope these Commenting lists will help to my website
    best workday studio online training

    ReplyDelete
  31. Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...

    Start your journey with AWS Course and get hands-on Experience with 100% Placement assistance from Expert Trainers with 8+ Years of experience @eTechno Soft Solutions Located in BTM Layout Bangalore.

    ReplyDelete
  32. This post is really nice and informative. The explanation given is really comprehensive and informative . Thanks for sharing such a great information..Its really nice and informative . Hope more artcles from you. I want to share about the best learn java with free bundle videos provided and java training .

    ReplyDelete
  33. This comment has been removed by the author.

    ReplyDelete
  34. This comment has been removed by the author.

    ReplyDelete


  35. Whatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly, but it’s no need to do it, because you have explained the concepts very well. It was crystal clear.i also want to inform you the best salesforce training . thankyou . keep sharing..

    ReplyDelete
  36. I really like looking through an blog article that can make people think. Also, many thanks for allowing for me to comment!

    ReplyDelete
  37. Pretty article! I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing. sql dba tutorial and sql server online course.

    ReplyDelete
  38. This comment has been removed by the author.

    ReplyDelete
  39. Great post i must say and thanks for the information. Education is definitely a sticky subject. However, is still among the leading ExcelR Digital Marketing Class In Pune topics of our time. I appreciate your post and look forward to more.

    ReplyDelete
  40. Your style is very unique in comparison to other people I've read stuff from. Thanks for posting when you have the opportunity, education Guess I'll just book mark this web site.

    ReplyDelete
  41. Nice article. For offshore hiring services visit:
    livevictoria

    ReplyDelete
  42. Thanks for sharing this informations.
    DevOps Training institute in coimbatore

    Devops Certification in coimbatore

    artificial intelligence training in coimbatore

    ReplyDelete
  43. This comment has been removed by the author.

    ReplyDelete
  44. Nice Blog ! It was really a nice article and i was really impressed by reading this. Thanks for sharing such detailed information.



    Dot Net Training in Chennai | Dot Net Training in anna nagar | Dot Net Training in omr | Dot Net Training in porur | Dot Net Training in tambaram | Dot Net Training in velachery





    ReplyDelete
  45. At the point when you sweat, you lose water, yet you lose electrolytes and sodium. Sports drinks like Powerade assist you with supplanting those and keep your edge on the ball court. thanks
    Ai & Artificial Intelligence Course in Chennai
    PHP Training in Chennai
    Ethical Hacking Course in Chennai Blue Prism Training in Chennai
    UiPath Training in Chennai

    ReplyDelete

  46. Great Article
    Cloud Computing Projects


    Networking Projects

    Final Year Projects for CSE


    JavaScript Training in Chennai

    JavaScript Training in Chennai

    The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training

    ReplyDelete
  47. Hi,
    I really enjoyed while reading the blog. Thanks for sharing such a great information.
    Java Online Training
    Python Online Training
    PHP Online Training

    ReplyDelete
  48. Forex Signals, MT4 and MT5 Indicators, Strategies, Expert Advisors, Forex News, Technical Analysis and Trade Updates in the FOREX IN WORLD

    Forex Signals Forex Strategies Forex Indicators Forex News Forex World

    ReplyDelete
  49. Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well....
    java training in chennai

    java training in omr

    aws training in chennai

    aws training in omr

    python training in chennai

    python training in omr

    selenium training in chennai

    selenium training in omr

    ReplyDelete
  50. Very nice post here and thanks for it .I always like and such a super contents of these post.Excellent and very cool idea and great content of different kinds of the valuable information's.
    Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing such an informative blog. I have read your blog and I gathered some needful information from your post. Keep update your blog. Awaiting for your next update.


    Good job in presenting the correct content with the clear explanation. The content looks real with valid information. Good Work

    DevOps is currently a popular model currently organizations all over the world moving towards to it. Your post gave a clear idea about knowing the DevOps model and its importance.

    Azure Training in Chennai

    Azure Training in Bangalore

    Azure Training in Hyderabad

    Azure Training in Pune

    Azure Training | microsoft azure certification | Azure Online Training Course

    Azure Online Training




    ReplyDelete


  51. Wow it is really wonderful and awesome thus it is very much useful for me to understand many concepts and helped me a lot. it is really explainable very well and i got more information from your blog.Lot of great information which can be helpful in some or the other way. Keep updating the blog, looking forward for more content.Java training in Chennai

    Java Online training in Chennai

    Java Course in Chennai

    Best JAVA Training Institutes in Chennai

    Java training in Bangalore

    Java training in Hyderabad

    Java Training in Coimbatore

    Java Training

    Java Online Training

    ReplyDelete
  52. Excellent Blog! I would like to thank for the efforts you have made in writing this post. I am hoping the same best work from you in the future as well. I wanted to thank you for this websites! Thanks for sharing. Great websites!
    DevOps Training in Chennai

    DevOps Online Training in Chennai

    DevOps Training in Bangalore

    DevOps Training in Hyderabad

    DevOps Training in Coimbatore

    DevOps Training

    DevOps Online Training

    ReplyDelete
  53. Very interesting blog. Many blogs I see these days do not really provide anything that attracts others, but believe me the way you interact is literally awesome.You can also check my articles as well.I was just browsing through the internet looking for some information and came across your blog. I am impressed by the information that you have on this blog. It shows how well you understand this subject.
    DevOps Training in Chennai

    DevOps Online Training in Chennai

    DevOps Training in Bangalore

    DevOps Training in Hyderabad

    DevOps Training in Coimbatore

    DevOps Training

    DevOps Online Training

    ReplyDelete
  54. This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...

    AWS training in Chennai

    AWS Online Training in Chennai

    AWS training in Bangalore

    AWS training in Hyderabad

    AWS training in Coimbatore

    AWS training

    ReplyDelete
  55. This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...

    AWS training in Chennai

    AWS Online Training in Chennai

    AWS training in Bangalore

    AWS training in Hyderabad

    AWS training in Coimbatore

    AWS training

    ReplyDelete
  56. Very nice post here and thanks for it .I always like and such a super contents of these post.Excellent and very cool idea and great content of different kinds of the valuable information's.



    AWS Course in Chennai

    AWS Course in Bangalore

    AWS Course in Hyderabad

    AWS Course in Coimbatore

    AWS Course

    AWS Certification Course

    AWS Certification Training

    AWS Online Training

    AWS Training

    ReplyDelete
  57. I have read your excellent post. Thanks for sharing
    PostgreSQL Admin Training

    ReplyDelete
  58. I am really very happy to find this particular site. I just wanted to say thank you for this huge read!! I absolutely enjoying every petite bit of it and I have you bookmarked to test out new substance you post.
    DevOps Training in Chennai

    DevOps Course in Chennai



    ReplyDelete
  59. Wow!! Finally i've got it it's working. Thank you
    Electro World Television is a more used product in middle class families in Bangladesh. It ensures your eye health protection, reduces electricity and super speedy ram and processor, expandable memory super glossy panel usb HDMI CCTV VGA port Warranty 08 years papers Wireless mouse usable & boxes with good sound system.

    ReplyDelete
  60. Thank you for sharing this valuable information. Keep it update.
    Refrigerators are more used and necessary appliances in our daily life. We can't think of a single day without it. With the change of invention, the refrigerator has become cheaper to buy. For yours you can search Quikads; a classified ads platform where you can find ideas about eco+ refrigerator price in Bangladesh.

    ReplyDelete
  61. Digibrom is the Best Digital Marketing
    Training & Services In Bhopal
    Digibrom is the Best Digital Marketing Training & Services in Bhopal, providing complete digital growth for your business. We are one of the leading Digital Marketing company in Bhopal, and we are experts in digital marketing & web design. The market penetration along with the use of digital technology is our power. We serve businesses according to the need and requirements of the customers and deliver quality work in time because Digibrom is the best digital marketing training institute in Bhopal and service provider. We create likable content that increases the time spent by the customer on the internet.Digital Marketing is one of the greatest opportunities for a great career. Including lots of opportunities within the field and attractive salaries, it’s the best time to connect a digital marketing Training. These days Digibrom is the Best Digital Marketing Training In Bhopal. it has become a demand for professions to have a solid online presence and for that, people need to get help from digital marketing companies to improve their online appearance. Digibrom is the best digital marketing Training & Services company in Bhopal.
    Digital marketing Training in bhopal

    Digital marketing course bhopal

    ReplyDelete
  62. Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision.
    Primavera P6 Training online | Primavera online Training

    ReplyDelete
  63. very informative article.thank you for sharing.Angular training in Chennai

    ReplyDelete
  64. Way cool! Some admirable sentiments! I appreciate you writing this article and furthermore the remainder of the site is great.
    tech news

    ReplyDelete
  65. I like the way you express information to us. Thanks for such post and please keep it up. Elder Maxson Coat

    ReplyDelete
  66. Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site. whatsapp mod

    ReplyDelete
  67. Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.
    Check out Digital Marketing Courses In Pune With Placement

    ReplyDelete

  68. This post is so interactive and informative.keep update more information...
    AWS Training in Bangalore
    AWS Training in Pune

    ReplyDelete
  69. This post is so interactive and informative.keep update more information...
    hadoop training in tambaram
    big data training in tambaram

    ReplyDelete
  70. Very nice information about benefits of Digital Marketing Course. Thank you for sharing this valuable blog.
    We provides you the best Digital Marketing Knowledge- Visit us: First DigiShala

    ReplyDelete
  71. Hello, Excellent Blog.
    Thanks for valuable Information.
    Check out : Digital Marketing Company In Pimpri Chinchwad

    ReplyDelete
  72. Bitdefender Total Security 2019 Crack is award-winning antivirus and Internet security package that is equipped with powerful tools. Bitdefender Total Security Activation Code

    ReplyDelete
  73. MorphVox Pro Crack 5.0.20.17938 + Serial Key Latest 2022 Free Download is a program that converts your voice into anything you want. MorphVox Crack

    ReplyDelete
  74. wordpress website design agency in united states Need professional WordPress Web Design Services? We're experts in developing attractive mobile-friendly WordPress websites for businesses. Contact us today!

    ReplyDelete
  75. Every step of my life has been memorable and awesome since we met. I love you will all my heart. Good morning my love. My sweet love, you are my everything Love MSG For Husband

    ReplyDelete
  76. Your blog contain informative content of java. Learn Java Course in Greater Noida to know more about java.

    ReplyDelete
  77. Very informative Blog by you for the people who are new to this industry. Your detailed blog solves all the queries with good explanation. Keep up the good work. Thanks for sharing! We have a website too. Feel free to visit anytime.

    web development course in bangalore

    website developer training in bangalore

    ReplyDelete
  78. Very informative Blog by you for the people who are new to this industry. Your detailed blog solves all the queries with good explanation. Keep up the good work. Thanks for sharing! We have a website too. Feel free to visit anytime.

    top and bottom set for women

    track suits women

    ReplyDelete

  79. The blog post you provided discusses the introduction of Java 8 streams support in Hibernate 5.2 and highlights the shift towards a declarative programming paradigm. Java Training Institute in Meerut is the best career opportunity for start career in Java field.

    ReplyDelete
  80. Very informative Blog by you for the people who are new to this industry. Your detailed blog solves all the queries with good explanation. Keep up the good work. Thanks for sharing! We have a website too. Feel free to visit anytime.

    packers and movers for local shifting in mumbai

    Car Transportation service in mumbai

    ReplyDelete
  81. I am extremely impressed by your blog, because its very powerful for the new readers and have lot of information with proper explanation. Keep up the good work. Thanks for sharing this wonderful blog! We also have a website. Please check out whenever and wherever you see this comment.

    invitation card

    marriage invitation card

    ReplyDelete
  82. The article was up to the point and described the information very effectively. Thanks to blog author for wonderful and informative post.
    The post you have shared here is very informative and covered the areas we don’t know.. If you are looking for tailor made erp software for your business, book a free consultation custom erp software development

    ReplyDelete
  83. Very good The integration of Java 8 streams in Hibernate 5.2 is a noteworthy enhancement. The post effectively highlights the value streams bring to handling query result sets, enabling parallelism and functional programming seamlessly. Additionally, the discussion on how Java 8 stream ORM Speedment takes the functional paradigm further is quite insightful. Great job in detailing these fundamental aspects.
    visit- Java vs. Other Programming Languages: Which Course Should You Take?

    ReplyDelete
  84. Take advantage of Infycle Technologies' extensive Java training in Chennai to start your road towards programming transformation. Improve your coding skills as our knowledgeable professors walk you through the nuances of Java, the language that powers a plethora of apps all around the world. Engage in interactive learning, practical exercises, and real-world projects that are designed to hone your abilities and build your confidence. At Infycle, we think it's important to develop innovators in addition to programmers. Enrol in our Java course to unleash your ability to create dependable, expandable, and effective apps. Take advantage of this chance to establish yourself as a highly sought-after Java developer with skills and experience relevant to the business. Boost your chances for a successful career and participate in the dynamic tech industry. With Infycle's Java training, learn the craft of flawless coding – where your road to

    ReplyDelete
  85. Good information Thank you..

    ELearn Infotech offers Python Training in Hyderabad Madhapur. Our Python course includes from Basic to Advanced Level Python Course. We have designed our Python course content based on students Requirement to Achieve Goal. We offer both class room Python training in Hyderabad Madhapur and Python Course Online Training with real time project.

    ReplyDelete
  86. Thank you for sharing this. I always enjoy reading such superb content with valuable information. The ideas presented are excellent and really cool, making the post truly enjoyable. Keep up the fantastic work.
    Read also: Mastering Full Stack Development: Courses That Cover It All





    ReplyDelete