Been_DevStep
SpringBoot MemoController - page 본문
@Controller(value = "dev.study_web.memo.controllers.MemoController")
@RequestMapping(value = "/memo")
public class MemoController {
@RequestMapping(value = "/memopage", method = RequestMethod.GET)
public ModelAndView getIndex(){
ModelAndView modelAndView = new ModelAndView("memo/memo");
return modelAndView;
}
}
해당 소스코드를 통해서 memo.html을 불러옵니다.
※ html에서 css를 연결할때 경로 처음에 /static이 있다면 localhost로 접속할 경우 css가 적용되지 않을 수 있습니다.
<link rel="stylesheet" href="/static/memo/resources/stylesheets/memo.css">
->> localhost 접속시 css가 안될 수 있습니다.
<link rel="stylesheet" href="/memo/resources/stylesheets/memo.css">
-->> css 적용됨.
//JS도 동일합니다.
'공부 > SpringBoot' 카테고리의 다른 글
SpringBoot 우편번호 검색/주소 찾기 (0) | 2022.11.01 |
---|---|
SpringBoot 빈칸일 경우 경고메세지 (0) | 2022.10.30 |
SpringBoot Memo Delete (0) | 2022.10.27 |
Service (0) | 2022.10.26 |
타임리프 (Thymeleaf) (0) | 2022.10.25 |
Comments