일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- linux
- MySQL
- 요리
- javascript
- tool
- java
- Spring Batch
- Spring Boot
- elasticsearch
- springboot
- Design Patterns
- redis
- Gradle
- AWS
- 맛집
- it
- JVM
- Git
- Oracle
- Spring
- laravel
- php
- jsp
- Web Server
- jenkins
- ReactJS
- IntelliJ
- db
- ubuntu
- devops
Archives
- Today
- Total
아무거나
RedirectAttributes 사용한 redirect 전송법(not parameter) 본문
반응형
1. 컨트롤러에 일반 GET방식 테스트를 위한 컨트롤러 생성
/**
* redirect페이지로 넘기기 위한 컨트롤러
* @return
*/
@RequestMapping("/redirectpage")
public String redirectpage(){
return "redirect:/herepage?key1=value1&key2=value2";
}
/**
* redirect되는 컨트롤러
* @return
*/
@RequestMapping("/herepage")
public String herepage(@ModelAttribute(value="vo") RedirectVo vo){
return "herepage";
}
2. herepage 컨트롤러에 return 페이지인 herepage.jsp파일을 views 디렉토리내에 생성 후
다음과 같이 body 태그에 코드를 추가해보도록 합니다.
<h2>Redirect 페이지</h2> key1 :: ${vo.key1 }<br/> key2 :: ${vo.key2 } |
반응형
'Java & Kotlin > Spring' 카테고리의 다른 글
다른 패키지의 경로를 접근하게 하는 방법 (0) | 2019.06.18 |
---|---|
spring 프로젝트 생성 기본 예제 (0) | 2019.06.18 |
[Spring Boot] springboot+gradle+bootstrap 프로젝트 생성 (0) | 2019.06.07 |
[spring boot] 특정 디렉토리에 있는 파일 목록 읽기 (0) | 2019.05.22 |
[spring boot] Spring Boot에서 에러 페이지 처리하기 (0) | 2019.05.22 |
Comments