Java类:
package com.org.spring;
public class Restuarent {
public void greatingMessage() {
System.out.println("Welcome..");
}
}
测试Spring的Java类:
public class TestSpringPro {
@SuppressWarnings("resource")
public static void main(String[] args) {
try {
ApplicationContext context =
new ClassPathXmlApplicationContext("springConfig.xml");
Restuarent restObj = (Restuarent) context.getBean("restuarentBean");
restObj.greatingMessage();
} catch(Exception e) {
e.printStackTrace();
e.getMessage();
}
}
}
XML:bean配置
<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="restuarentBean" class="com.org.spring.Restuarent">
</bean>
</beans>
我是java的新手,因为我在调试这个简单的弹簧程序时有点困惑我要去“Thread.exit()行:不可用”但是只是运行没有错误即将到来为什么请让我知道。我知道这可能很简单但提前谢谢
答案 0 :(得分:1)
Window-&gt;偏好设置,Java-&gt;已安装的JRE,点击我的JRE并点击 编辑。现在单击Add External Jar,转到java路径 “C:\ Program Files \ Java \ jdk1.8.0_60”就像这样找到src.zip并添加这个 在此之后,我确认它有效。