mybatis-plus error

错误:java.lang.NoClassDefFoundError: org/apache/velocity/context/Context

the reason:

 Lack of velocity dependence

solution:

<dependency>
   <groupId>org.apache.velocity</groupId>
   <artifactId>velocity-engine-core</artifactId>
   <version>2.0</version>
</dependency>
 

Guess you like

Origin www.cnblogs.com/zly123/p/12099813.html