1.问题: Springboot项目直接启动不报错,打war包放到外部容器Tomcat.东方通上,在@Weblistener注解的监听器类中报错 One or more listener fail to start 具体报错是在类构造器中,调用@Service注解的类的实例时,发生空指针异常 2.原代码: private final XxxService xxxService; public XxxListener(XxxService xxxService){ this.xxxService…
首先  项目打包步骤 1.vue config.js  添加 publicPath: './', // 公共路径 assetsDir:'static', 2.将代理注释掉 proxy 3.将hash需要改成history的模式,但是改后又出现了新的问题,刷新的时候找不到页面  404 报错: 一直报错误 原因:代码写的有错误 例如 这种写法是错误  打包的时候报错 const baseAdd = { "canClickSelf":true, "title": &qu…
由于项目中使用的短信服务发送的消息太慢,所以把采用了阿里大鱼的短信服务,花费了几个小时,通过审核,发现可以单独运行.但是,放到web项目中会报错(Java.lang.NoClassDefFoundError:com/aliyuncs/exceptions/ClientException). 然后,百度到是说,缺少相关的第三方jar包 aliyun-java-sdk-core-3.3.1.jar  和  aliyun-java-sdk-dysmsapi-1.0.0.jar (官方的demo里面有)…
异常: java.io.FileNotFoundException: /Users/lanhuajian/.m2/repository/org/apache/derby/derby/10.13.1.1/derbyLocale_cs.jar (No such file or directory) at java.util.zip.ZipFile.open(Native Method) ~[?:1.8.0_152] at java.util.zip.ZipFile.<init>(ZipFile.j…
今天在做springboot整合成springCloud并注册到consul中时,发现若注册到consule中成功 则不能启动swagger,且不能提供任何API服务,要是能提供API服务则不能注册到consule中,并报错" Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this time. "+ "Please remove spring-boot-sta…
1.问题: java.io.FileNotFoundException ****目录下找不到模板文件 在使用Springboot启动类启动没有错,但是打包放到tomcat.东方通这些外部容器上报错,在目标路径下找不到资源文件. 2.原代码: 配置: template_relativeJar_path: config 获取配置: @Value("${spd.template_relativeJar_path}") private String templateRelativePath;…
去除内嵌tomcat和添加jsp依赖 去除内嵌tomcat 在springboot启动依赖中去除内嵌tomcat <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!-- 移除嵌入式tomcat插件 --> <exclusions> <exclusion&…
Springboot解决war包放到Tomcat服务器上404的特殊情况 原文链接:https://www.cnblogs.com/blog5277/p/9330577.html 原文作者:博客园--曲高终和寡 *******************如果你看到这一行,说明爬虫在本人还没有发布完成的时候就抓走了我的文章,导致内容不完整,请去上述的原文链接查看原文**************** 一般情况下,请先检查是否是从jar包方式转war包的时候缺了哪些步骤,我这里就不做特殊说明了,百度谷歌上…
springboot项目中报错:listener does not currently know of SID given in connect descriptor 出现这个问题的原因是SID写错了: 配置文件代码里面我写的是: 我配置文件里面写的orcl是小写,改成大写的ORCL,问题解决~…
起因:项目开发完成   需要打包部署了  发现自己不会打包 那么开始网上学习打包? 那么怎么来打包那? 我们以前没有采用springboot 时候我们都是直接将项目打成war包形式  然后放到tomcat webapp下面 开始打包: 我对原理现在也不是很理解  我给出的是自己对打成包  并运行成功的案例? 1.开始第一个war 先上代码:pom.xml文件 <?xml version="1.0" encoding="UTF-8"?> <proje…