1

我正在尝试在运行该应用程序时开发一个 Spring“HelloWorld”项目,它给了我这个错误:

信息:从类路径资源加载 XML bean 定义 [Beans.xml] 线程“主”java.lang.NoClassDefFoundError 中的异常:org.springframework.expression.ExpressionParser

下面是我的代码:

package com.tutorialspoint;

public class HelloWorld {
    private String message;

    public void getMessage() {
        System.out.println("your message : "+message);
    }

    public void setMessage(String message) {
        this.message = message;
    }
}

package com.tutorialspoint;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
    public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");

        HelloWorld obj = (HelloWorld) context.getBean("helloWorld ");
    obj.getMessage();
    // TODO Auto-generated method stub
    }
}

应用程序上下文.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

    <bean id="helloWorld" class="com.tutorialspoint/HelloWorld">
        <property name="message" value="Hello World!"/>
    </bean>
</beans>
4

5 回答 5

1

包括

spring-expression-3.1.1.Release.jar

lib文件夹下

我提到了 3.1.1 作为示例,您可以使用最新版本(如果有的话)。

于 2013-04-05T17:52:44.273 回答
1

class除了添加所有依赖的jar之外,定义中的定义似乎bean无效的

com.tutorialspoint/HelloWorld
                  ^

做了,

<bean id="helloWorld" class="com.tutorialspoint.HelloWorld"> 
     <property name="message" value="Hello World!"/>
</bean>

context.getBean("helloWorld ") 应该改为context.getBean("helloWorld")

于 2013-04-05T17:57:12.320 回答
0

将 spring 依赖项添加到您的类路径

于 2013-04-05T18:01:06.543 回答
0

如果您不使用 Maven,如 M Sach 所说,请将“spring expression-X.Release.jar”添加到您的“lib”文件夹中,并且不要忘记将其添加到 Eclipse 的构建路径中

于 2014-01-21T08:47:41.630 回答
0

这个与 spring-expression.jar 相关的异常添加这个。

在您的添加以下依赖项pom.xml

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-expression</artifactId>
    <version>5.3.8</version>
</dependency>
于 2016-02-05T10:14:01.197 回答