1)配置如下
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-velocity</artifactId>
</dependency>2)报错如下
3)原因:没有指定版本信息,因为父类也没指定。
4)解决方案,指定Version,如下
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-velocity</artifactId>
<version>1.1.3.RELEASE</version>
</dependency>最后更新pom
Spring Boot Velocity Starter配置问题
1029

被折叠的 条评论
为什么被折叠?



