添加jar
This commit is contained in:
parent
b1a1bceb1e
commit
de41e21a9d
4
pom.xml
4
pom.xml
|
|
@ -9,8 +9,8 @@
|
|||
<version>4.2.0</version>
|
||||
|
||||
<name>ruoyi</name>
|
||||
<url>http://www.ruoyi.vip</url>
|
||||
<description>若依管理系统</description>
|
||||
<url></url>
|
||||
<description>管理系统</description>
|
||||
|
||||
<properties>
|
||||
<ruoyi.version>4.2.0</ruoyi.version>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,13 @@
|
|||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-generator</artifactId>
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>1.16.16</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,17 @@
|
|||
package com.ruoyi.web.core.config;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
/**
|
||||
* @author wanghy08
|
||||
* @date 2020-07-12 23:43
|
||||
*/
|
||||
@ConfigurationProperties(prefix = "spring.thymeleaf")
|
||||
@Data
|
||||
public class TestConfig {
|
||||
|
||||
private String mode;
|
||||
private String encoding;
|
||||
private String cache;
|
||||
}
|
||||
Loading…
Reference in New Issue