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
- kotlin
- 백준
- transaction
- Android
- http
- 김영한
- Exception
- java
- 스프링
- springdatajpa
- 자바
- jpa
- 그리디
- QueryDSL
- SpringBoot
- JDBC
- Spring Boot
- pointcut
- JPQL
- spring
- Thymeleaf
- 스프링 핵심 기능
- 인프런
- 알고리즘
- Servlet
- AOP
- Greedy
- db
- 스프링 핵심 원리
- Proxy
Archives
- Today
- Total
목록HttpRequestServlet (1)
개발자되기 프로젝트
HTTP 요청 데이터 - GET 쿼리 파라미터
1.GET , 쿼리파라미터 전달 데이터 username=hello age=20 URL : http://localhost:8080/request-param?username=hello&age=20 서버에서는 HttpServletRequest 가 제공하는 메서드를 통해 쿼리 파라미터를 조회할 수 있음.0 2. 전체 파라미터 조회 request.getParam(name)을 해야 parameter를 꺼낼 수 있음 /** * 1. 파라미터 전송 기능 * http://localhost:8080/request-param?username=hello&age=20 */ @WebServlet(name = "RequestParamServlet", urlPatterns = "/request-prarm") public class ..
인프런/[인프런] 스프링 MVC 1
2021. 9. 8. 20:09