Marks the main class of a Spring Boot application.
@SpringBootApplication
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
Indicates that the class provides configuration settings
@Configuration
public class AppConfig {
@Bean
public String exampleBean() {
return "Hello, Spring Boot!";
}
}
Scans components (e.g., @Component, @Service, @Repository) in the specified package.
@ComponentScan(basePackages = "com.example")
public class AppConfig {}
Defines a Spring bean.
@Configuration
public class AppConfig {
@Bean
public MyService myService() {
return new MyService();
}
}
Marks a generic Spring-managed bean.
@Component
public class MyComponent {
public String sayHello() {
return "Hello, Component!";
}
}
Specialized version of @Component
for service classes.
@Service
public class MyService {
public String process() {
return "Processing data...";
}
}
Specialized @Component
for data access layers.
@Repository
public class MyRepository {
public String fetchData() {
return "Fetching data...";
}
}
Injects dependencies automatically.
@Component
public class MyService {
private final MyRepository repository;
@Autowired
public MyService(MyRepository repository) {
this.repository = repository;
}
}
Gives priority to a specific bean when multiple beans of the same type exist.
@Bean
@Primary
public MyRepository myPrimaryRepository() {
return new MyRepository();
}
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!";
}
}
Maps HTTP requests to handler methods.
@RequestMapping("/api")
public class MyController {
@GetMapping("/users")
public List<String> getUsers() {
return List.of("User1", "User2");
}
}
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;
}
Extracts values from URL paths.
@GetMapping("/users/{id}")
public String getUser(@PathVariable int id) {
return "User ID: " + id;
}
Extracts query parameters.
@GetMapping("/greet")
public String greet(@RequestParam String name) {
return "Hello, " + name;
}
Extracts JSON request body.
@PostMapping("/users")
public String addUser(@RequestBody User user) {
return "Added user: " + user.getName();
}
Directly returns data instead of a view.
@GetMapping("/message")
@ResponseBody
public String message() {
return "Direct Response";
}
Enables Cross-Origin Resource Sharing (CORS).
@CrossOrigin(origins = "http://example.com")
@GetMapping("/data")
public String getData() {
return "CORS Enabled";
}
Marks a class as a JPA entity.
@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
}
Specifies the table name in the database.
@Entity
@Table(name = "users")
public class User {
@Id
private Long id;
}
Marks the primary key and its generation strategy.
@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
}
Defines a column mapping.
@Column(name = "user_name", nullable = false, length = 100)
private String name;
Marks a DAO component.
@Repository
public interface UserRepository extends JpaRepository<User, Long> {}
Restricts method execution based on roles.
@PreAuthorize("hasRole('ADMIN')")
public void secureMethod() {}
Alternative to @PreAuthorize
.
@Secured("ROLE_ADMIN")
public void secureMethod() {}
Enables Spring Security.
@EnableWebSecurity
public class SecurityConfig {}
Enables scheduling tasks.
@EnableScheduling
public class SchedulerConfig {}
Schedules tasks.
@Scheduled(fixedRate = 5000)
public void scheduledTask() {
System.out.println("Running every 5 seconds");
}