Skip to main content

Posts

Showing posts with the label Thread

Tech Conversant Weekly Jun 19 - Jul 01

Topic: General                                                                                                                                              Level: All Welcome to the world of cutting-edge technology! Every bi-week, we bring you the latest and most incredible advancements in the tech industry that are sure to leave you feeling inspired and empowered. Stay ahead of the game and be the first to know about the newest innovations shaping our world. Discover new ways to improve your daily life, become more efficient, and enjoy new experiences. This time, we've got some exciting news to share with you! Modelling common behaviors between the List and the Set interface has been partially provided by LinkedHashSet. Now from JDK21 with the new interface SequencedCollection extending the Collection interface and is also extended by the List, SortedSet via SequencedSet (for reversal operation), Deque. The SequencedMap interface extends the Map interface by providing the below me

Tech Conversant Weekly Jun 05 - Jun 17

Topic: General                                                                                                                                              Level: All Welcome to the world of cutting-edge technology! Every bi-week, we bring you the latest and most incredible advancements in the tech industry that are sure to leave you feeling inspired and empowered. Stay ahead of the game and be the first to know about the newest innovations shaping our world. Discover new ways to improve your daily life, become more efficient, and enjoy new experiences. This time, we've got some exciting news to share with you! When there is a need to promote/release the local database changes along with code changes.  Creating a DB migration schema script (a point time snapshot defined by the state of the DB) on the given code version helps in synchronizing the data evolution with the code. With this feature, we can work on a particular code and data version, as well as a rollback to a later versi

Tech Conversant Weekly Mar 27 - Apr 08

Topic: General                                                                                                                                              Level: All Welcome to the world of cutting-edge technology! Every bi-week, we bring you the latest and most incredible advancements in the tech industry that are sure to leave you feeling inspired and empowered. Stay ahead of the game and be the first to know about the newest innovations shaping our world. Discover new ways to improve your daily life, become more efficient, and enjoy new experiences. This time, we've got some exciting news to share with you! Java Streams API operating on JSON documents is possible in two ways, 1. JsonObject accessing the JSON elements by name and processing it in string representation ie., the terminal operation JsonCollectors returns a JSON Array output  2. Jackson databinding with JsonNode reading the JSON as a string and using the JsonNode as stream http://www.mastertheboss.com/java-ee/json/h