nested exception is java.lang.UnsupportedClassVersionErrorUnsupported major.minor version 51.0和Error loading class defined in URL [jar:file:/E:/Users/zhaozhen/Workspaces/MyEclipse%2010/.metadata/.me_tcat/webapps/taotao/WEB-INF/lib/taotao-manager-service-0.0.1-
Error creating bean with name 'itemServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.taotao.mapper.TbItemMapper com.taotao.service.impl.ItemServiceImpl.itemMapper; nested exception is org.springframework.beans.factory.CannotLoadBeanClassException: Error loading class [com.taotao.service.impl.ContentCatServiceImpl] for bean with name 'contentCatServiceImpl' defined in URL [jar:file:/E:/Users/zhaozhen/Workspaces/MyEclipse%2010/.metadata/.me_tcat/webapps/taotao/WEB-INF/lib/taotao-manager-service-0.0.1-SNAPSHOT.jar!/com/taotao/service/impl/ContentCatServiceImpl.class]: problem with class file or dependent class; nested exception is java.lang.UnsupportedClassVersionError: com/taotao/service/impl/ContentCatServiceImpl : Unsupported major.minor version 51.0
第一个nested exception is java.lang.UnsupportedClassVersionError的错误原因是List泛型的一些特性jdk1.6并不支持,必须将使用的jdk更新到1.7才可以。
第二个Error loading class defined in URL [jar:file:/E:/Users/zhaozhen/Workspaces/MyEclipse%2010/.metadata/.me_tcat/webapps/taotao/WEB-INF/lib/taotao-manager-service-0.0.1-的错误原因是因为添加了并不需要的jar包。将jar包删掉即可。
Parse Fatal Error at line 2 column 193: 已经为元素 "web-app" 指定属性 "xmlns"
不知怎么的,突然报这么个错误。一直没找到原因所在。一直提醒web.xml的错误。从别的项目拷贝了一个web.xml来,结果还是不对。把tomcat 重新下载了 一个也不行。
运行其他项目都正常。一直感觉是代码的问题,所以就去查看web.xml文件。
于是Ctrl+A全选,格式化代码(Ctrl+Shift+F)即看到下面红色的错误。原来是重复了。删除以下代码中的 xmlns="http://java.sun.com/xml/ns/javaee",重新运行,OK!其实错误提示的很明显。
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
希望能对大家有所帮助。
网友评论