Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Proxy
- spring
- db
- 스프링 핵심 원리
- springdatajpa
- SpringBoot
- 스프링
- transaction
- Greedy
- 알고리즘
- 자바
- Servlet
- 인프런
- Exception
- 백준
- jpa
- 그리디
- http
- 스프링 핵심 기능
- QueryDSL
- Android
- JDBC
- 김영한
- AOP
- pointcut
- Spring Boot
- JPQL
- kotlin
- Thymeleaf
- java
Archives
- Today
- Total
목록서블릿 컨테이너 (1)
개발자되기 프로젝트
서블릿
1. 서블릿 특징 @WebServlet(name = "helloServlet", urlPatterns = "/hello") public class HelloServlet extends HttpServlet { @Override protected void service(HttpServletRequest request, HttpServletResponse response){ //애플리케이션 로직 } } urlPatterns(/hello)의 URL이 호출되면 서블릿 코드가 실행 HTTP 요청 정보를 편리하게 사용할 수 있는 HttpServletRequest request객체에서 원하는 정보 꺼내면 됨. HTTP 응답 정보를 편리하게 제공할 수 있는 HttpServletResponse 원하는 정보를 Respon..
인프런/[인프런] 스프링 MVC 1
2021. 9. 6. 22:53