Best of Spring Boot2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Top 10 Microservices Design Patterns and Principles

    Microservice architecture is structured on the business domain and it's a collection of small autonomous services. Transaction management is the fundamental advantage of a shared database versus a per-service database. Event Sourcing is based on the idea that any change in an entity's state should be captured by the system. The persistence of a business item is accomplished by storing a series of state-changing events.

  2. 2
    Article
    Avatar of foojayioFoojay.io·3y

    Two Million Java Developers on Visual Studio Code!

    For the November update, we are bringing you new code editing features, such as postfix completion and optimized organize imports. In addition, we've made some visual enhancements to the Spring components. We are continuing to add more improvements around "organize import" scenarios and you can find all our future plans in this GitHub issue.

  3. 3
    Article
    Avatar of codimisCodimis·4y

    How to Build a Spring Boot REST API with Java ?

    Spring Data JPA aims to significantly improve the implementation of data access layers by reducing the effort to the amount that’s needed. We will use Spring Initializr to generate the Spring Boot project for which the first step is navigating to start.

  4. 4
    Article
    Avatar of foojayioFoojay.io·3y

    A Faster Way to Build React + Spring Boot Apps Using Hilla 1.3

    The latest version of Hilla now makes it faster to build React apps that connect to Spring Boot backends than with React alone. No need for REST, call the backend through automatically generated type-safe methods. Discover and fix errors earlier thanks to end-to-end type -safety.

  5. 5
    Article
    Avatar of jetbrainsJetBrains·4y

    IntelliJ IDEA 2022.2 Is Out!

    IntelliJ IDEA 2022.2 is available, bringing a range of noteworthy upgrades and refinements to the IDE. This new version includes multiple quality improvements to the remote development Beta, making its functionality sleeker and more stable to work with. You can download the new version from our website, update directly from the IDE, update via IntelliJIDEA 2022. The new version also supports the features introduced in Kotlin 1.

  6. 6
    Article
    Avatar of hnHacker News·4y

    Don’t call it a comeback: Why Java is still champ

    Java has been among the top three languages since its launch in 1995. Companies like Amazon, Google, Netflix, Pinterest, Spotify, Square, and Zoom all employ Java across their codebases. In just two years Java ranked number three in popularity, outpaced only by C and C++.

  7. 7
    Article
    Avatar of btrprogBetter Programming·4y

    First Impressions When Switching From Spring Boot to Ktor

    The definition of the components which should be managed by Koin needs to be configured manually. Koin provides an interface that can be used in order to inject dependencies in test class. The implementation of the application service layer I will omitt in this article because it works the same way as in SpringBoot and therefore is not interesting. The missing part to fulfill the requirements is the addition of a handler.