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 | 29 | 30 | 31 |
Tags
- JPQL
- 스프링 핵심 기능
- 인프런
- QueryDSL
- spring
- 김영한
- java
- Android
- SpringBoot
- JDBC
- AOP
- db
- Thymeleaf
- Spring Boot
- 자바
- Exception
- 스프링 핵심 원리
- 알고리즘
- Greedy
- 그리디
- Servlet
- 스프링
- 백준
- jpa
- transaction
- kotlin
- pointcut
- springdatajpa
- Proxy
- http
Archives
- Today
- Total
목록getParameterValues (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