web-dev-qa-db-ja.com

Spring BootでVelocityを適切に設定する方法は?

私はSpringBootを初めて使用しますが、これに大きな問題があります。 application.propertiesで設定できるVelocity関連のSpringBootプロパティの短いリストがあり、それらは正常に機能しています。しかし、そのように構成できないVelocityプロパティは非常にたくさんあります。

this の質問を見つけました。これは私が必要としているものに対処しているようですが、私にはうまくいきません。プログラムの起動時にSpringBoot内でブレークポイントを使用すると、SpringBootによって「spring.velocity.properties。*」キーと値のペアが正しく読み取られて読み込まれていることがわかります。これらは何にも影響を与えていないようです。設定した値に関係なく、Velocityランタイム動作はとにかくデフォルトを使用します。

何が足りないのですか?

編集:

pom.xml

<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>
<groupId>docuvore</groupId>
<artifactId>docuvore-server</artifactId>
<version>0.0.1-SNAPSHOT</version>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.3.0.BUILD-SNAPSHOT</version>
</parent>

<properties>
    <Java.version>1.8</Java.version>
</properties>

<dependencies>

    <!-- Core Spring Boot -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency>

    <!-- Tomcat and Spring Web MVC -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <!-- Spring Security 
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    -->

    <!-- Spring Data and MongoDB -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>

    <!-- Apache Velocity --> 
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-velocity</artifactId>
    </dependency>

    <!-- Project Lombok -->
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>1.16.2</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

<!-- Additional lines to be added here... -->

<!-- (you don't need this if you are using a .RELEASE version) -->
<repositories>
    <repository>
        <id>spring-snapshots</id>
        <url>http://repo.spring.io/snapshot</url>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
    <repository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
    </repository>
</repositories>
<pluginRepositories>
    <pluginRepository>
        <id>spring-snapshots</id>
        <url>http://repo.spring.io/snapshot</url>
    </pluginRepository>
    <pluginRepository>
        <id>spring-milestones</id>
        <url>http://repo.spring.io/milestone</url>
    </pluginRepository>
</pluginRepositories>
</project>

application.properties

logging.path=/logs
#spring.velocity.resourceLoaderPath = /templates/
#spring.velocity.checkTemplateLocation=false
spring.velocity.properties.template.provide.scope.control = true
spring.velocity.properties.directive.parse.max.depth = 9
spring.velocity.properties.runtime.log = C:/logs/velocity.log

Application.Java

package com.github.docuvore.prototype;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration 
@EnableAutoConfiguration
@ComponentScan
public class Application {

    public static void main(String[] args) throws Exception {
        SpringApplication.run(Application.class, args);
    }
}

ExampleVelocityController.Java

package com.github.docuvore.prototype.examples;

import Java.io.StringWriter;
import Java.util.ArrayList;
import Java.util.List;

import org.Apache.velocity.Template;
import org.Apache.velocity.VelocityContext;
import org.Apache.velocity.app.VelocityEngine;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ExampleVelocityController {

    @RequestMapping("/exampleVelocity")
    String home() {
        String result = null;

        VelocityEngine velocity = new VelocityEngine();
        velocity.init();
        Template template = velocity.getTemplate("src/main/resources/templates/general/htmlElement.vm");

        VelocityContext context = new VelocityContext();
        context.put("title", "Apache Velocity");

        StringWriter writer = new StringWriter();
        template.merge(context, writer);

        result = writer.toString();

        return result;
    }
}

htmlElement.vm

<html>
#parse ("src/main/resources/templates/general/bodyElement.vm")
</html>

bodyElement.vm

<body>
#parse ("src/main/resources/templates/general/bodyElement.vm")
</body>
6
wMattDodd

Velocityが使用されるようにするには、ブレークポイントを VelocityAutoConfiguration に配置する必要があります。

spring-boot-sample-velocity を見てください。依存関係を確認してください。

5
Eddú Meléndez