美文网首页
spring-boot-starter-velocity配置异常

spring-boot-starter-velocity配置异常

作者: 善良的玫瑰 | 来源:发表于2018-10-23 13:47 被阅读7次

    配置如下

    <dependency> <groupId>org.springframework.boot</groupId>

                <artifactId>spring-boot-starter-velocity</artifactId> 

    </dependency>

    报错如下

    原因:没有指定版本信息,因为父类也没指定。

    解决方案,指定Version,如下

    <dependency>

    <groupId>org.springframework.boot</groupId>

               <artifactId>spring-boot-starter-velocity</artifactId>

               <version>1.1.3.RELEASE</version>

    </dependency>

    相关文章

      网友评论

          本文标题:spring-boot-starter-velocity配置异常

          本文链接:https://www.haomeiwen.com/subject/mfxazftx.html