main() -> @GetMapping

master
mjkhan21 7 months ago
parent 1100cd6e1f
commit 464c37789f

@ -4,6 +4,7 @@ import java.util.List;
import javax.annotation.Resource; import javax.annotation.Resource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndView;
@ -34,7 +35,7 @@ public class {controllerClass} extends ApplicationController {
* 조건없는 {@link #get{entityClass}List({queryClass}) {entityComment} 조회 결과} 포함시킨다. * 조건없는 {@link #get{entityClass}List({queryClass}) {entityComment} 조회 결과} 포함시킨다.
* @return /{entityName}/{entityName}-main * @return /{entityName}/{entityName}-main
*/ */
@RequestMapping(name = "{entityComment} 메인", value = "/main.do") @GetMapping(name = "{entityComment} 메인", value = "/main.do")
public ModelAndView main() { public ModelAndView main() {
ModelAndView mav = get{entityClass}List(new {queryClass}().setPageNum(1)); ModelAndView mav = get{entityClass}List(new {queryClass}().setPageNum(1));
mav.setViewName("/{entityName}/{entityName}-main"); mav.setViewName("/{entityName}/{entityName}-main");

Loading…
Cancel
Save