Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
Tags
more
Archives
Today
Total
관리 메뉴

Been_DevStep

SpringBoot MemoController - page 본문

공부/SpringBoot

SpringBoot MemoController - page

JChBeen 2022. 10. 30. 17:16
@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