java.lang.reflect.MalformedParameterizedTypeException异常问题

做dubbo框架集成的时候,出现的问题,本来的原来的工程没有错误,引入dubbo后报错,原因是spring的jar文件冲突,我用的spring是4.x,dubbo引入的是2.5所以需要去掉,相关的pom文件写法如下:

<dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>dubbo</artifactId>
            <version>2.5.3</version>
            <exclusions>  
            <exclusion>  
                <artifactId>spring</artifactId>  
                <groupId>org.springframework</groupId>  
                </exclusion>  
            </exclusions>
        </dependency>

改成这样后,冲突解决,如果你不是这种问题,那么就去看一下是否有别的jar包冲突,这个异常就是因为相关jar包冲突因起的,比如你引入了comming-fileupload-1.5和comming-fileupload-2.3可能就会冲突,就是类似这种的,还有一种情况就是依赖的jar包,比如某个jar包依赖另一个jar包是2.4版本,但你引入的是1.8就会有冲突,因为可能相应的支持还没有更新,所以出现这个问题还需要大家细心查找下原因。还有自己的项目所用的JDK版本也需要考虑,有的包是不支持JDK1,8的,

时间: 2024-10-14 05:34:02

java.lang.reflect.MalformedParameterizedTypeException异常问题的相关文章

[spring] java.lang.reflect.MalformedParameterizedTypeException

spring中加入dubbo后报java.lang.reflect.MalformedParameterizedTypeException 因为dubbo 2.5.3 它引用的是spring 2.5.6.SEC03,而我项目中有用spring 4.2.X,所以导致冲突. 在maven中把dubbo中的spring依赖去除就可以了. 如果你们项目中也报这个错,很可能也是因为jar包冲突造成的.网上还有什么mybatis,mybatis-spring,spring 版本问题.

Tomcat启动报Error listenerStart错误 | &quot;beans&quot; 必须匹配 DOCTYPE 根 &quot;null&quot; | java.lang.reflect.MalformedParameterizedTypeException

maven打包发布工程时,发布上去却报错FAIL - Deployed application at context path /ch but context failed to start 在服务器上重启tomcat,只看到报错: 严重: Error listenerStart一月 13, 2015 9:59:05 上午 org.apache.catalina.core.StandardContext startInternal严重: Context [/PMF] startup failed

springmvc错误集锦-dubbo包含低版本的spring包,依赖的时候应该排除Caused by: java.lang.reflect.MalformedParameterizedTypeException

dubbo 常见错误 1. Caused by: java.lang.reflect.MalformedParameterizedTypeException 启动时报错,原因是dubbo 依赖 spring 2.5.6.SEC03,而我项目中有用spring 3.2.4.RELEASE,所以导致冲突. 在maven中把dubbo中的spring依赖去除就可以了. 如果你们项目中也报这个错,很可能也是因为jar包冲突造成的 1 2 3 4 5 6 7 8 9 10 <dependency>   

org.apache.struts2.json.JSONException: java.lang.reflect.InvocationTargetException异常解决

org.apache.struts2.json.JSONException: java.lang.reflect.InvocationTargetException org.apache.struts2.json.JSONWriter.bean(JSONWriter.java:246) org.apache.struts2.json.JSONWriter.processCustom(JSONWriter.java:178) org.apache.struts2.json.JSONWriter.p

Spring与Dubbo整合报java.lang.reflect.MalformedParameterizedTypeException

出现此原因是jar包冲突问题,在pom文件配置Dubbo依赖的地方过滤掉spring,配置如下: <dependency>     <groupId>com.alibaba</groupId>     <artifactId>dubbo</artifactId>     <version>${dubbo.version}</version>     <exclusions>         <exclus

json数据转换异常:net.sf.json.JSONException: java.lang.reflect.InvocationTargetException

1 //存储Product对象的集合是从,Product是从mysql数据库中查询并添加的 2 ArrayList<Product> list = new ArrayList<Product>(); 3 4 //设置响应对象编码 5 response.setCharacterEncoding("utf-8"); 6 response.setContentType("text/html;charset=utf-8"); 7 8 //将list集

Initialization of bean failed; nested exception is java.lang.reflect.MalformedParameterizedTypeExcep

body { font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI",Tahoma,Helvetica,Sans-Serif,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLiU,serif; font-size: 10.5pt; line-height: 1.5;

json解析异常 - net.sf.json.JSONException: java.lang.reflect.InvocationTargetException

注:在项目中, 我使用原生的ajax请求数据的时候, JSONObject没能帮我解析, 当却不给我报错, 我是在junit单元测试中测试的时候, 发现的.发现好多时候, 特别是通过ajax请求, 不给我们报错,很郁闷, 特别是ie, 有些问题, 得借助FireFox的返回结果分析. 当然, FireFox有时也没报错. 异常栈: net.sf.json.JSONException: java.lang.reflect.InvocationTargetException at net.sf.js

ajax请求json数据异常:nested exception is net.sf.json.JSONException: java.lang.reflect.InvocationTargetException] with root cause

ajax请求json数据异常:nested exception is net.sf.json.JSONException: java.lang.reflect.InvocationTargetException] with root cause 1.异常原因:所请求的json数据中包含java.util.date数据类型,但是在后台并没有将其格式转换 2.解决方法:添加工具类DateJsonValueProcessor import java.text.SimpleDateFormat; imp