스프링 부트 환경에서 서블릿 등록하고 사용해보자.
참고
서블릿은 톰캣 같은 웹 애플리케이션 서버를 직접 설치하고,그 위에 서블릿 코드를 클래스 파일로 빌드해서 올린
다음, 톰캣 서버를 실행하면 된다. 하지만 이 과정은 매우 번거롭다.
스프링 부트는 톰캣 서버를 내장하고 있으므로, 톰캣 서버 설치 없이 편리하게 서블릿 코드를 실행할 수 있다.
스프링 부트 서블릿 환경 구성
🔴 @ServletComponentScan
스프링 부트는 서블릿을 직접 등록해서 사용할 수 있도록 @ServletComponentScan 을 지원한다. 다음과 같이 추가 하자.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package hello.servlet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
@ServletComponentScan // 서블릿 자동 등록
@SpringBootApplication
public class ServletApplication {
public static void main(String[] args) {
SpringApplication.run(ServletApplication.class, args);
}
}
|
cs |
🔴 @WebServlet 서블릿 애노테이션
디렉토리 ->main.java. hello.servlet.basic.HelloServlet
name: 서블릿 이름
urlPatterns: URL 매핑
(위 name 이름이랑 urlPatterns 이름이 겹치면 안된다.)
HTTP 요청을 통해 매핑된 URL이 호출되면 서블릿 컨테이너는 다음 메서드를 실행한다.
protected void service(HttpServletRequest request, HttpServletResponse response)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package hello.servlet.basic;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebServlet(name="helloServlet", urlPatterns = "/hello")
public class Helloservlet extends HttpServlet {
@Override
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// super.service(req, resp);
System.out.println("Helloservlet.service");
System.out.println("request = " + request + ", response = " + response);
//Query Parameter 를 sublet은 괸장히 읽도록 지원해준다 http://localhost:8080/hello?username=yoo
String username = request.getParameter("username");
System.out.println("username = " + username);
//아래 두개는 컨텐트 타입 헤더정보에 들어간다
response.setContentType("text/plain");
response.setCharacterEncoding("utf-8"); //문자 인코딩 정보
response.getWriter().write("hi "+username); //http 바디에 데이터가 들어간다
}
}
|
cs |
🔴 웹 브라우저 실행
http://localhost:8080/hello?username=world
결과: hello world
🔴콘솔 실행결과
Helloservlet.service
request = org.apache.catalina.connector.RequestFacade@60311421, response = org.apache.catalina.connector.ResponseFacade@6ef6e657
username = world
🔴 개발할 때 좀 편리하게 HTTP 요청 메세지를 다 보고싶을경우
main->resources->application.properties
에서 다음과 같이 타이핑
logging.level.org.apache.coyote.http11=debug
**참고**
**운영서버에 이렇게 모든 요청 정보를 다 남기면 성능저하가 발생할 수 있다. 개발 단계에서만 적용하자.
🔴 welcome 페이지 추가
지금부터 개발할 내용을 편리하게 참고할 수 있도록 welcome 페이지를 만들어두자.
webapp 경로에 index.html 을 두면 http://localhost:8080 호출시 index.html 페이지가 열린다.
디렉토리 ->main/webapp/index.html
디렉토리->main/webapp/basic.html
'프로그래밍 > SpringMVC_1' 카테고리의 다른 글
HTTP 요청 데이터 - API 메시지 바디 - 단순 텍스트 (1) | 2024.01.22 |
---|---|
HTTP 요청 데이터 - POST HTML Form (0) | 2024.01.13 |
HTTP 요청 데이터 - GET 쿼리 파라미터 (0) | 2024.01.12 |
HTTP 요청 데이터 - 개요(Get, POST, HTTP Message body) (0) | 2024.01.12 |
서블릿(Servlet) (0) | 2024.01.08 |