Пытаюсь заставить заработать компонент de.chandre.velocity2.spring на spring-boot 2.0.2. Не видит мои вьюхи.
Нужно как то изменить параметр resource.loader = class.
Мое приложение:
package com.test.my.web;
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({
"com.test.my.web",
"de.chandre.velocity2.spring",
})
public class App {
public static void main(String[] args) throws Exception {
SpringApplication.run(App.class, args);
}
}