한바다
@RequestMapping 과 @GetMapping 본문
@RequestMapping
- 기능: 다양한 HTTP 메서드(GET, POST, PUT, DELETE 등)에 대해 사용 가능.
- 속성: method 속성을 사용해 특정 HTTP 메서드를 지정할 수 있음.
- @RequestMapping 을 쓰면 기본으로 return할 때 html 파일을 바라보겠다
- classpath : src/main/resource
기본경로에 앞에 붙여진 /templates/ 폴더가 html을 담는 공간
파일명 마지막에는 항상 .html 이 붙는다.
[코드]
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
@RequestMapping("test")
public String 테스트페이지연결메서드() {
return "test";
}
}
@GetMapping
- 기능: GET 요청 전용으로 사용.
- 편리성: @GetMapping 의 간편한 버전으로, 코드가 더 간결해짐
- @GetMapping 을 쓰면 기본으로 return할 때 html 파일을 바라보겠다
- classpath : src/main/resource
기본경로에 앞에 붙여진 /templates/ 폴더가 html을 담는 공간
파일명 마지막에는 항상 .html 이 붙는다.
@RequestMapping: 다양한 HTTP 메서드를 처리할 수 있음.
@GetMapping: GET 요청을 간단하게 처리할 수 있음.
[코드]
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class ExampleController {
@GetMapping("example")
public String 이그잼플메서드() {
return "example";
}
}
[이클립스>깃허브 하는 방법]
상단메뉴 윈도우>쇼뷰>아덜
'servlet' 카테고리의 다른 글
Cause: java.sql.SQLException: error code [17034] 해당 위치에 지원되지 않는 SQL92 토큰 오류 포함 (0) | 2024.06.18 |
---|---|
서블릿 실행 오류 There was an unexpected error (type=Internal Server Error, status=500). (0) | 2024.06.17 |
서블릿 실행 오류 난감 (0) | 2024.06.14 |
서블릿 실행 오류 ERROR[templates/index.html]") (1) | 2024.06.13 |
서블릿(Servlet)시작 과 ERR_CONNECTION_REFUSED (0) | 2024.06.10 |