Written by
spring-style
on
on
[Spring] @RestController 사용시 화면 이동이 되도록 처리하는 방법
[Spring] @RestController 사용시 화면 이동이 되도록 처리하는 방법
1 2 3 4 5 6 7 8 9
@RestController public class ExamController { @RequestMapping( "/" ) public ModelAndView manage() { ModelAndView mav = new ModelAndView( "login" ); return mav; } } Colored by Color Scripter
from http://kmhan.tistory.com/696 by ccl(A) rewrite - 2021-12-20 13:01:22