Spring Boot랑 Thymeleaf를 써서 화면 만들기 (@RestController + Ajax + Json 으로 붙일거입니다.)
Name | Version | 사이트 |
IntelliJ IDEA | 2018.3.5 | |
SpringBoot | 2.1.6 | https://spring.io/projects/spring-boot#learn |
Thymeleaf | 3.0.11.RELEASE | https://www.thymeleaf.org/index.html
https://www.thymeleaf.org/doc/tutorials/3.0/thymeleafspring.html |
Java | openjdk version "1.8.0_202" | |
먼저 Spring Initializr (가운데 e가 빠진거같은데....) 클릭 후 Project SDK 고른 후 Next 클릭\
각 필요정보를 넣은 뒤 다시 Next
Developer Tools 에서 Spring Boot DevTools
Web에서 Spring Web Starter
Template Engines 에서 Thymeleaf 클릭 후 진행 (Lombok도 하고 싶다..)
마지막으로 프로젝트 설정 후 생성
프로젝트 생성된 모습
maven으로 pom을 생성했으니 pom.xml의 구조를 보자.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.thymeleaf.view</groupId>
<artifactId>springset</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springset</name>
<description>thymeleaf project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
springboot dependencies 의존성을 가진 라이브러리 목록들이다.
spring-boot-starter-thymeleaf
thymeleaf를 낀게 보인다. 이제 layout을 가지기 위해
thmyleaf-layout-dialect 즉 템플릿 기반 레이아웃 구성을 위한 dependency를 pom.xml에 추가하겠다.
그 다음 SpringsetApplication을 실행해보겠다.
분명 아래와 같이 에러가 나실겁니다.
src/main/resources/templates 내에 index.html을 만든다. Thymeleaf의 templates을 만드는 테스트다.ㅑ
html에 기본 코드를 친다.
이제 다시 실행하면,
화면이 호출되는 걸 볼 수 있다.
자 이제
1. File Upload 화면
2. Grid 화면
3. 관리자 화면
을 만들어보겠습니다.