添加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>
|
<version>4.2.0</version>
|
||||||
|
|
||||||
<name>ruoyi</name>
|
<name>ruoyi</name>
|
||||||
<url>http://www.ruoyi.vip</url>
|
<url></url>
|
||||||
<description>若依管理系统</description>
|
<description>管理系统</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<ruoyi.version>4.2.0</ruoyi.version>
|
<ruoyi.version>4.2.0</ruoyi.version>
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,12 @@
|
||||||
<artifactId>ruoyi-generator</artifactId>
|
<artifactId>ruoyi-generator</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<version>1.16.16</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<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