1.maven-assembly-plugin  换成 --> maven-shade-plugin <plugins> <!-- shade插件打包成jar包 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version></version&…
在idea中开发web项目,解决maven的jar包冲突的方法 第一步: 先对项目进行 clean ,再进行install 第二步: 出现NoSuchMethodException,ClassNotFoundException,NoClassDefFoundError极大概率是jar冲突. 所以,这个时候,就可以根据报错,确定jar包名称,然后打开maven依赖树,搜索对应jar包 1.根据报错,确定冲突jar包名 根据报错具体错误信息,错误行数,点进去,看看是哪个类,存在于哪个jar包. 2.…
在Jmeter运行http请求时报错: {"timestamp":"2019-11-12T02:39:28.949+0000","status":415,"error":"Unsupported Media Type","message":"Content type 'text/plain;charset=UTF-8' not supported","pat…
http://www.2cto.com/os/201312/262437.html 安装了VS2012之后,chrome在加载页面的时候会报 Resource interpreted as Script but transferred with MIME type text/plain 的警告. 这是因为VS2012在安装的时候改了windows的注册表,将解析javascript的类型标示改成了text/plain,导致javascript被转换成了text/plain格式,但这并不影响jav…
postman报Unsupported Media Type: Content type 'text/plain;charset=UTF-8' not supported postman之所以报Unsupported Media Type: Content type 'text/plain;charset=UTF-8' not supported错误,是发送数据的格式不正确,需要修改数据的发送方式所匹配的格式. 因为发送的数据是json格式的,而postman默认是text格式,有些会报错,所以…
今天碰到了Resource interpreted as Stylesheet but transferred with MIME type text/plain 这个错误. 原因:在web中配置了filter,过滤/*所有文件.代码中忘记了执行chain.doFilter(request, response)放行.…
同事解决的,摘抄上来备用. 问题描述:在OAF里调用ESB的服务报错如下: Error Page   Exception Details.    oracle.apps.fnd.framework.OAException: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.IllegalAccessError, msg=tried to access class org.apache.common…
背景:目前正在迭代开发的项目,应用户要求新增一个电子文档转换的功能,即将不标准的excel文件转换为标准的excel文件(标准模板). 选择:pio ,本项目里面本来就有poi的jar包 问题:项目里的poi的相关jar包版本较低,在使用wps保存过的excel文件,在读取的时候会发报错,使用微软的办公软件保存过的不会. 但是我们在使用高版本的jar包不会发生这种问题.跟进源码发现低版本的jar包,里面写法有点问题,具体不再描述. 解决方法:1.设想直接在项目里面替换上高版本的jar包,要替换就…
maven导入jar包中的一些概念:      直接依赖:项目中直接导入的jar包,就是该项目的直接依赖包.      传递依赖:项目中没有直接导入的jar包,可以通过项目直接依赖jar包传递到项目中去. 解决jar包冲突的方式: 方式一:      第一声明优先原则:哪个jar包的坐标在靠上的位置,这个jar包就是先声明的.      先声明的jar包坐标下的依赖包,可以优先进入项目中. 也就是pom文件里,谁写在上面一些谁进入项目依赖中 方式二:      路径近者优先原则.直接依赖路径比传…
转载自: https://www.oschina.net/question/2272552_2269641 https://stackoverflow.com/questions/25869428/classpath-resource-not-found-when-running-as-jar 几个实现方式: String data = ""; ClassPathResource cpr = new ClassPathResource("static/file.txt&quo…