Spring boot mapping 설정
2024. 10. 1. 20:31ㆍJava/Spring Boot
Class 차원에서 mapping 설정
@RestController
@RequestMapping("/image")
public class ImageController extends HttpServlet {
Method 차원에서 mapping 설정
@RequestMapping("/one")
public Member getOne(String test) {
// GET 방식
@GetMapping("/one")
public void getOne(String test) {
// POST 방식
@PostMapping("/one")
public void getOne(String test) {
'Java > Spring Boot' 카테고리의 다른 글
Spring boot에서 java 변수값을 템플릿에 출력하기 (0) | 2024.11.17 |
---|---|
FastAPI에서 이미지 가져오기 (0) | 2024.10.19 |
Spring boot Gmail 연동하여 stmp로 메일보내기 (0) | 2024.08.14 |
Spring boot application.yml 변수 처리 (0) | 2024.08.14 |
Spring boot static method에서 @Autowired field를 호출해야 하는 경우 (0) | 2024.08.13 |