Getting Started with Spring Boot

Annotations that are good to know

  1. @Autowired is sometimes handy even though constructor injection is preferred sometimes. Lombok's @RequiredArgsConstructor is often used with constructor injection.
    1. @Qualifier("nameOfBean") helps when fetching a bean that has been named with the (name="nameOfBean") parameter to an annotation. There's an example in Antkorwin's spring state machine (SSM) notes

A talk about getting started with spring boot

  1. Repository is at https://github.com/payne/spring-boot-getting-started-talk
  2. Here are the slides

presentation link

YouTubes

  1. Spring Boot Tutorial for Beginners - 2023 Crash Course using Spring Boot 3 by Dan Vega
  2. Spring Boot Playlist from Professor Sluiter


Tags: java, spring, spring-boot, programming, talks

← Back home