Spring Boot

오픈소스 비즈니스 컨설팅
Pnuskgh (토론 | 기여)님의 2016년 11월 11일 (금) 13:22 판
둘러보기로 가기 검색하러 가기

Spring Boot를 정리 한다.


Annotation

@RequestMapping(value = "login", method = RequestMethod.GET, params = { "!error" })
@RequestMapping(value = "login", method = RequestMethod.GET, params = { "error" })


    @Autowired 
    private HttpSession httpSession;

    httpSession.getAttribute("projectId")


public String showLoginError(Map<String, Object> model, @RequestParam String error) { ~ }
    public String domainList(ModelMap modelMap, 
                             @RequestParam(value = "debug", defaultValue = "false", required = false) String debug) {



참고 문헌