기록해! 정리해!

thymeleaf - hello 본문

SpringBoot

thymeleaf - hello

zsuling 2022. 10. 14. 10:28

323p.

 

351p.

1. 프로젝트 생성 : JAR에서만 사용가능하다

 

2. pom.xml 에 jsp 의존성 안넣어도된다

3. applicaton.properties에 Thymeleaf Cache Setting 설정하기

# 주석 ( none , servlet )
spring.main.web-application-type=servlet
server.port=8888

# 오라클 컨넥션 정보
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url =jdbc:oracle:thin:@localhost:1521:xe
spring.datasource.username=system
spring.datasource.password=1234

####  다중 mapper 설정하기
mybatis.mapper-locations=classpath:mapper/**/*.xml

# Thymeleaf Cache Setting
spring.thymeleaf.cache = false

4.

5. BoardController

/hello와 hello 이름이 같아야함

6. hello.html

7. index.html

결과

 

'SpringBoot' 카테고리의 다른 글

thymeleaf - getBoardList 링크  (0) 2022.10.14
thymeleaf - getBoardList  (0) 2022.10.14
myBatis2 (7)- 자료실(사진삭제, space.jpg)  (0) 2022.10.13
myBatis2 (6)- 자료실(사진)  (0) 2022.10.13
myBatis2 (5)- 자료실(사진)  (0) 2022.10.13
Comments