@Service
서비스 계층에서 사용되는 클래스임을 알림
public class UserService {
@Autowired
private UserRepository userRepository;
public User getUserById(Long id) {
return userRepository.findById(id).orElse(null);
}
public User saveUser(User user) {
return userRepository.save(user);
}
}
'JAVA > Spring' 카테고리의 다른 글
Annotation - @Configuration (0) | 2023.04.20 |
---|---|
Annotation - @Repository (0) | 2023.04.19 |
Annotation - @PostMapping (0) | 2023.04.19 |
Annotation - @GetMapping (0) | 2023.04.19 |
Annotation - @RequestMapping (0) | 2023.04.19 |