티스토리 뷰
728x90
반응형
Model
@GetMapping("/example")
public String showExample(Model model) {
model.addAttribute("message", "Hello, World!");
return "exampleView";
}
ModelAndView
@Controller
public class MyController {
@GetMapping("/greeting")
public ModelAndView greeting() {
ModelAndView modelAndView = new ModelAndView("greeting"); // 뷰 이름 설정 (greeting.jsp)
modelAndView.addObject("message", "안녕하세요!"); // 뷰로 전달할 데이터
return modelAndView;
}
}
redirect
@Controller
public class MyController {
@PostMapping("/submit")
public String submitForm() {
// 데이터 처리 후 다른 페이지로 리다이렉트
return "redirect:/thankyou";
}
}
redirect 시점에 데이터를 함께 전송 하는 코드
@Controller
public class MyController {
@PostMapping("/submitForm")
public String submitForm(
@RequestParam("name") String name,
RedirectAttributes redirectAttributes
) {
// 데이터를 리다이렉트 후에도 전달할 수 있도록 설정
redirectAttributes.addFlashAttribute("message", "폼 제출 완료!");
redirectAttributes.addAttribute("userName", name); // URL에 파라미터 추가
return "redirect:/success";
}
@GetMapping("/success")
public String successPage(
@ModelAttribute("message") String message,
@RequestParam("userName") String userName
) {
System.out.println("메시지: " + message); // "폼 제출 완료!" 출력
System.out.println("유저 이름: " + userName); // 폼에서 전송된 이름 출력
return "success"; // success.jsp 페이지로 이동
}
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- java 키워드 정리
- 상품 등록
- jstl(java standard tag library)-core
- React
- 표현 언어(expression language)
- In App Purchase
- system.io
- 문자 자르기
- 진수 변환
- await
- 스프링 시큐리티(spring security)-http basic 인증
- jsp 오픈 소스
- MainActor
- nl2br
- java.sql
- REST API
- error-java
- jstl(java standard tag library)
- 인텔리제이(intellij)
- .submit()
- java web-mvc
- 람다식(lambda expression)
- java-개발 환경 설정하기
- 메이븐(maven)
- 스프링 프레임워크(spring framewordk)
- 스프링 시큐리티(spring security)
- 제품 등록
- System.Diagnostics
- 스프링 프레임워크(spring framework)
- 특정 문자를 기준으로 자르기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함