본문 바로가기

공부/SpringFramework

[SpringBoot] Spring Boot Thymeleaf 설정

728x90
반응형

 

 Maven pom.xml  설정

    pom.xml 설정입니다.

    springboot 와 thymeleaf dependency를 추가해 줍니다

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.1.6</version>
    </parent>
  
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
            
    </dependencies>

 

 View 설정을 위한 application.yml 설정

 

 

 

 

 

 

 

 

 

728x90
반응형