목록Spring/project (6)
충분히 쌓여가는
https://www.thymeleaf.org/ Thymeleaf Integrations galore Eclipse, IntelliJ IDEA, Spring, Play, even the up-and-coming Model-View-Controller API for Java EE 8. Write Thymeleaf in your favourite tools, using your favourite web-development framework. Check out our Ecosystem to see more integrati www.thymeleaf.org (thymeleaf에 Docs에서 Read online 클릭 후 fragment 찾아보기) src>main>resources>templates에 fragm..
Spring Initializr 기본 구성 src>main>resources>templates에 index.html 생성 src>main>java>com.enough.project에 controller 패키지 생성>HomeController.java 생성 경로 지정 HomeController.java @Controller public class HomeController { @GetMapping("/") public String index() { return "index"; } } css 파일 생성 및 폴더 지정 src>main>resources>static에 css 파일 생성(index.css) h1 { color:blue; } index.htm에 head 사이 ~ 입력 index page 프로젝트 실..