Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
16734b1d
Commit
16734b1d
authored
Nov 24, 2021
by
RuoYi
Browse files
升级velocity到最新版本2.3
parent
31106c91
Changes
3
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
16734b1d
...
...
@@ -31,7 +31,7 @@
<commons.fileupload.version>
1.4
</commons.fileupload.version>
<commons.collections.version>
3.2.2
</commons.collections.version>
<poi.version>
4.1.2
</poi.version>
<velocity.version>
1.7
</velocity.version>
<velocity.version>
2.3
</velocity.version>
<jwt.version>
0.9.1
</jwt.version>
</properties>
...
...
@@ -132,14 +132,8 @@
<!-- velocity代码生成使用模板 -->
<dependency>
<groupId>
org.apache.velocity
</groupId>
<artifactId>
velocity
</artifactId>
<artifactId>
velocity
-engine-core
</artifactId>
<version>
${velocity.version}
</version>
<exclusions>
<exclusion>
<groupId>
commons-collections
</groupId>
<artifactId>
commons-collections
</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- collections工具类 -->
...
...
ruoyi-generator/pom.xml
View file @
16734b1d
...
...
@@ -20,7 +20,7 @@
<!--velocity代码生成使用模板 -->
<dependency>
<groupId>
org.apache.velocity
</groupId>
<artifactId>
velocity
</artifactId>
<artifactId>
velocity
-engine-core
</artifactId>
</dependency>
<!-- collections工具类 -->
...
...
ruoyi-generator/src/main/java/com/ruoyi/generator/util/VelocityInitializer.java
View file @
16734b1d
...
...
@@ -20,10 +20,9 @@ public class VelocityInitializer
try
{
// 加载classpath目录下的vm文件
p
.
setProperty
(
"
file.
resource.loader.class"
,
"org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader"
);
p
.
setProperty
(
"resource.loader.
file.
class"
,
"org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader"
);
// 定义字符集
p
.
setProperty
(
Velocity
.
INPUT_ENCODING
,
Constants
.
UTF8
);
p
.
setProperty
(
Velocity
.
OUTPUT_ENCODING
,
Constants
.
UTF8
);
// 初始化Velocity引擎,指定配置Properties
Velocity
.
init
(
p
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment