Spring Boot All Annotations With Example

1. Spring Boot Core Annotations

@SpringBootApplication

Marks the main class of a Spring Boot application.

@SpringBootApplication
public class MyApp {
    public static void main(String[] args) {
        SpringApplication.run(MyApp.class, args);
    }
}

@Configuration

Indicates that the class provides configuration settings

@Configuration
public class AppConfig {
    @Bean
    public String exampleBean() {
        return "Hello, Spring Boot!";
    }
}

@ComponentScan

Scans components (e.g., @Component, @Service, @Repository) in the specified package.

@ComponentScan(basePackages = "com.example")
public class AppConfig {}
 

@Bean

Defines a Spring bean.

@Configuration
public class AppConfig {
    @Bean
    public MyService myService() {
        return new MyService();
    }
}
 

2. Spring Boot Stereotype Annotations

@Component

Marks a generic Spring-managed bean.

@Component
public class MyComponent {
    public String sayHello() {
        return "Hello, Component!";
    }
}

@Service

Specialized version of @Component for service classes.

@Service
public class MyService {
    public String process() {
        return "Processing data...";
    }
}

@Repository

Specialized @Component for data access layers.

@Repository
public class MyRepository {
    public String fetchData() {
        return "Fetching data...";
    }
}
 

3. Dependency Injection Annotations

@Autowired

Injects dependencies automatically.

@Component
public class MyService {
    private final MyRepository repository;

    @Autowired
    public MyService(MyRepository repository) {
        this.repository = repository;
    }
}

 

@Primary

Gives priority to a specific bean when multiple beans of the same type exist.

@Bean
@Primary
public MyRepository myPrimaryRepository() {
    return new MyRepository();
}

4. Spring Boot MVC Annotations

@RestController

Combination of @Controller and @ResponseBody.

@RestController
public class MyController {
    @GetMapping("/hello")
    public String hello() {
        return "Hello, World!";
    }
}
@RequestMapping("/api")
public class MyController {
    @GetMapping("/users")
    public List<String> getUsers() {
        return List.of("User1", "User2");
    }
}
@RestController
public class MyController {
    @GetMapping("/hello")
    public String hello() {
        return "Hello, World!";
    }
}

@RequestMapping

Maps HTTP requests to handler methods.

@RequestMapping("/api")
public class MyController {
    @GetMapping("/users")
    public List<String> getUsers() {
        return List.of("User1", "User2");
    }
}

@GetMapping, @PostMapping, @PutMapping, @DeleteMapping

Shorthand for @RequestMapping for specific HTTP methods.

@RestController
@RequestMapping("/users")
public class UserController {
    @GetMapping("/{id}")
    public String getUser(@PathVariable int id) {
        return "User " + id;
    }

    @PostMapping
    public String addUser(@RequestBody String user) {
        return "Added user: " + user;
    }
}

@GetMapping("/users/{id}")
public String getUser(@PathVariable int id) {
    return "User ID: " + id;
}

@PathVariable

Extracts values from URL paths.

@GetMapping("/users/{id}")
public String getUser(@PathVariable int id) {
    return "User ID: " + id;
}

@RequestParam

Extracts query parameters.

@GetMapping("/greet")
public String greet(@RequestParam String name) {
    return "Hello, " + name;
}

@RequestBody

Extracts JSON request body.

@PostMapping("/users")
public String addUser(@RequestBody User user) {
    return "Added user: " + user.getName();
}

@ResponseBody

Directly returns data instead of a view.

@GetMapping("/message")
@ResponseBody
public String message() {
    return "Direct Response";
}

@CrossOrigin

Enables Cross-Origin Resource Sharing (CORS).

@CrossOrigin(origins = "http://example.com")
@GetMapping("/data")
public String getData() {
    return "CORS Enabled";
}

5. Spring Boot JPA and Database Annotations

@Entity

Marks a class as a JPA entity.

@Entity
public class User {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String name;
}

@Table

Specifies the table name in the database.

@Entity
@Table(name = "users")
public class User {
    @Id
    private Long id;
}

@Id, @GeneratedValue

Marks the primary key and its generation strategy.

@Entity
public class User {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
}

@Column

Defines a column mapping.

@Column(name = "user_name", nullable = false, length = 100)
private String name;

@Repository

Marks a DAO component.

@Repository
public interface UserRepository extends JpaRepository<User, Long> {}

6. Spring Boot Security Annotations

@PreAuthorize

Restricts method execution based on roles.

@PreAuthorize("hasRole('ADMIN')")
public void secureMethod() {}

@Secured

Alternative to @PreAuthorize.

@Secured("ROLE_ADMIN")
public void secureMethod() {}

@EnableWebSecurity

Enables Spring Security.

@EnableWebSecurity
public class SecurityConfig {}

7. Spring Boot Scheduling Annotations

@EnableScheduling

Enables scheduling tasks.

@EnableScheduling
public class SchedulerConfig {}

@Scheduled

Schedules tasks.

@Scheduled(fixedRate = 5000)
public void scheduledTask() {
    System.out.println("Running every 5 seconds");
}