Working with Service - up1/course-springboot-2024 GitHub Wiki

Working with service layer

Move business logic from Controller to Service layer

UserService.java

@Service
public class UserService {
}

Integrate service with controller

UserController.java

@RestController
public class UserController {

    @Autowired
    private UserService userService;