1

在 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 文件夹中,但这并没有什么区别。

我有点不知所措。我有这门课,我知道需要什么类,但我不知道如何让 spring 看到这一点。

谢谢。

4

2 回答 2

0

由于 3.2 M2 Spring 不依赖于外部cglibJAR,而是使用自己的副本,该副本已重命名以减少与原始 JAR 可能发生的冲突。

从 3.2 M2 开始,我们已经升级到新的 CGLIB 3.0。我们将所有 net.sf.cglib 类重新打包到 org.springframework.cglib 并将它们直接内联到 spring-core JAR 中。这意味着所有 @Configuration 和子类代理功能在 M2 中都是开箱即用的,并且意味着 CGLIB 不会与其他项目发生冲突。

有关更多详细信息,请参见以下链接:

所以,我想你在类路径中有不同 Spring 版本的 JAR。确保它们都是 3.2 M2 版本。

于 2012-09-20T09:12:51.063 回答
0

实际上,您没有该类, cglib-2.2.3.jar 不包含它。

你用的是什么版本的spring框架?从 XSD 我看到了对尚未发布的 Spring 3.2 的引用。如果你坚持最新发布的版本(3.1.2)会更好

于 2012-09-12T15:50:52.190 回答