일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 테스트메소드
- 적용우선순위
- WeNews
- 메세지수정
- EC2
- appspec.yml
- 네이티브쿼리
- AuthenticationEntryPoint
- foreignkey
- 커밋메세지수정
- MySQL
- 검색
- docker명령어
- querydsl
- 2 > /dev/null
- appspec
- 서브쿼리
- subquery
- ubuntu
- 메소드명
- 컨테이너실행
- 포트
- application.yml
- Query
- 참조키
- 추후정리
- ㅔㄴ션
- 외부키
- 테스트
- 예약
Archives
- Today
- Total
제뉴어리의 모든것
Controller에서 Redirect할때 본문
- 파라미터 없이 Redirect 할때
@RequestMapping("/doA")
public String doA() {
return "redirect:/doB";
}
----------------------------
@RequestMapping("/doB")
public void doB() {
}
- 파라미터 보내면서 Redirect 할때
@RequestMapping("/doA")
public String doA(RedirectAttributes rttr) {
rttr.addFlashAttribute("msg", "리다이렉트시 전달할 메세지");
return "redirect:/doB";
}
----------------------------
@RequestMapping("/doB")
public void doB(@ModelAttribute String msg) {
}
'Spring Boot' 카테고리의 다른 글
[spring] Spring boot 기본 경로와 기타 설정 [유용] (0) | 2021.01.15 |
---|---|
[Spring] @Controller와 @RestController 차이 [출처 유용] (0) | 2021.01.15 |
@DATA 어노테이션 (0) | 2021.01.14 |
@Query 사용시 Limit 지정 방법 (0) | 2021.01.14 |
JPQL 문법, 내용정리 (0) | 2021.01.14 |