小编典典

Springboot 1.5.x的速度

spring-boot

使用Springboot 1.4.4,我可以直接将VelocityEngine用作bean。我对application.properties所做的配置:

spring.velocity.properties.resource.loader=jar
spring.velocity.properties.jar.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
spring.velocity.properties.jar.runtime.log.logsystem.class=org.apache.velocity.runtime.log.SimpleLog4JLogSystem
spring.velocity.properties.jar.runtime.log.logsystem.log4j.category=velocity
spring.velocity.cache=true
spring.velocity.charset=UTF-8

在Springboot 1.5.x中,不再有Velocity Support。在Springboot 1.5.x中集成此配置的最佳方法是什么?

我已经添加了依赖项:

<dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity</artifactId>
    <version>1.7</version>
</dependency>

并创建了Bean:

@Bean
VelocityEngine velocityEngine(){
    return new VelocityEngine();
}

但是缺少属性。

@Autowired
ConfigurableEnvironment configurableEnvironment;

我可以解析属性,但是感觉不对。


阅读 314

收藏
2020-05-30

共1个答案

小编典典

我将按照Jespers的建议使用FreeMarker。

为了回答我的问题,如果某人无法切换技术但想转到Springboot 1.5.x,这里是一个简单的解决方案:需要更改属性,删除
spring.velocity.properties

resource.loader=jar
jar.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
jar.runtime.log.logsystem.class=org.apache.velocity.runtime.log.SimpleLog4JLogSystem
jar.runtime.log.logsystem.log4j.category=velocity
jar.resource.loader.cache=true
input.encoding=UTF-8

添加创建Bean的属性:

@Bean
VelocityEngine velocityEngine(){
    Properties properties = new Properties();
    properties.load(this.getClass().getResourceAsStream("/application.properties"));
    return new VelocityEngine(properties);
}

一个重要的缺点是,使用该解决方案,您无法在不更改Velocity引擎的情况下更改属性文件名。因此,它消除了Springboot的某些灵活性。

2020-05-30