01/10/2018, 14:41
Loading XML bean definitions from class path resource
Chả là nãy giờ em ngồi vọc xem java spring mvc nó thế nào. Em đang code thử đoạn hello world bằng spring thì nó xảy ra 4 dòng lỗi ngớ ngẩn mà chẳng phải exception. Anh chị nào chuyên về cái này giúp hộ em cái ạ. Em cảm ơn
HelloWorld.java
package springtutorial;
public class HelloWorld
{
private String message = "Hello World!";
public void setMessage(String message)
{
this.message = message;
}
public void getMessage(String message)
{
System.out.println("Your Message: " + message);
}
}
MainApp.java
package springtutorial;
import org.springframework.context.*;
import org.springframework.context.support.*;
public class MainApp
{
public static void main(String[] args)
{
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
}
}
Beans.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.1.xsd">
<bean id="helloWorld" class="springtutorial.HelloWorld">
<property name="message" value="Hello World!"></property>
</bean>
</beans>
Em cảm ơn
Minh
viết 16:42 ngày 01/10/2018
- Bạn có đặt file Beans.xml đúng trong resource không ?
- Phần thiết lập Java build path của Project bạn đã trỏ tới folder resource chưa
Bài liên quan