maven
文章平均质量分 53
bulosli
这个作者很懒,什么都没留下…
展开
-
ehcache配置
第一步,导入ehcache的jar包。 <!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache --> <dependency> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-ehcache</a原创 2021-05-22 12:08:21 · 442 阅读 · 0 评论 -
关于自定义缓存ehcache使用时的导包错误
运行时错误:java.lang.NoClassDefFoundError: Could not initialize class net.sf.ehcache.CacheManager错误原因:使用的包的问题错误包:<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-ehcache --><dependency> <groupId>org.mybatis</groupId&g原创 2021-05-22 11:56:14 · 459 阅读 · 0 评论 -
关于servlet的500错误cannot be cast to jakarta.servlet.Servlet
关于servlet的500错误cannot be cast to jakarta.servlet.Servlet因为Tomcat使用的是10.0.6版本,此版本中servlet使用的jar包已经改为jakartaee-migration-1.0.0-shaded.jar。java文件中任然使用的是servlet-api.jar。才出现了这个问题。这一点可以根据Tomcat中的例子可以直接找到错误。原因找到了,只要导入正确的jar包就对了。到maven仓库找导入maven的配置..原创 2021-05-15 21:11:47 · 2460 阅读 · 0 评论 -
maven 项目打包配置pom.xml
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>原创 2018-04-24 14:56:20 · 1671 阅读 · 0 评论