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