在Eclipse中的tomcat中运行spring MVC项目时收到此错误。
java.lang.ClassNotFoundException: org.springframework.cglib.proxy.MethodInterceptor
谷歌没有关于错误的结果。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
<tx:annotation-driven />
<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/resources/" />
<context:component-scan base-package="/"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" p:maxUploadSize="1000000" />
<bean id="personService" class="PersonService" />
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/database" />
<property name="username" value="root" />
<property name="password" value="root" />
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="/" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
</props>
</property>
</bean>
<bean id="transactionManger" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
我已将cglib-2.2.3.jar放在我的lib文件夹中,但这没有任何区别。
我有点失落。我有班级,我明白班级需要什么,但我不知道怎么让春天看到这个。
感谢。
答案 0 :(得分:0)
实际上,你没有这个类,cglib-2.2.3.jar不包含它。
您使用的是哪种版本的弹簧框架?从XSD我看到Spring 3.2的引用尚未发布。如果你坚持使用最新发布的版本(3.1.2)
会更好答案 1 :(得分:0)
从3.2 M2开始,Spring不依赖于外部cglib
JAR,而是使用自己的副本重新命名,以减少与原始版本的冲突。
截至3.2 M2,我们已升级至新的CGLIB 3.0。我们将所有net.sf.cglib类重新打包到org.springframework.cglib,并直接在spring-core JAR中内联它们。这意味着所有@Configuration和子类代理功能在M2中都是开箱即用的,并且意味着CGLIB不会与其他项目发生冲突。
有关详细信息,请参阅以下链接:
所以,我想你在类路径中有不同的Spring版本的JAR。确保所有这些都是3.2 M2版本。