Я пытаюсь понять DI, но мой Spring Bean не вводится и не создается, когда я использую аннотации autowire и компонента.Вместо этого я получаю исключение нулевого указателя, потому что мой бин нулевой.Должен ли я создать его вручную, и в этом случае, где?Где вы указываете порядок создания бинов, когда несколько бинов зависят друг от друга?Вот мой код:
App.java
package se.springtest;
import se.springtest.Person;
import org.springframework.core.io.ClassPathResource;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
public class App
{
public static void main( String[] args )
{
BeanFactory factory = new XmlBeanFactory(
new ClassPathResource("application-context.xml"));
Person p = (Person) factory.getBean("person");
p.show();
}
}
application-context.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"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="se.springtest"/>
</beans>
Person.java
package se.springtest;
public interface Person {
public void show();
}
PersonImpl.java
package se.springtest;
import org.springframework.stereotype.Component;
import org.springframework.beans.factory.annotation.Autowired;
@Component("person")
public class PersonImpl implements Person {
private String firstName;
private String lastName;
private AdressInfo adress;
public PersonImpl() {firstName="Olle"; lastName="Olsson"; System.out.println("creating PersonImpl object");}
@Autowired
public void setAdress(AdressInfo adress) {
this.adress = adress;
}
public AdressInfo getAdress() {
return adress;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public void show() {
System.out.println("Name is " + getFirstName() + " " +getLastName());
if (adress!=null)
adress.show();
else System.out.println("null");
}
}
AdressInfo.java
package se.springtest;
public interface AdressInfo {
public void show();
}
AdressInfoImpl.java
package se.springtest;
import org.springframework.stereotype.Service;
@Service("adress")
public class AdressInfoImpl implements AdressInfo {
private String adress;
public AdressInfoImpl() {adress="Storgatan 1"; System.out.println("creating AdressImpl object");}
public String getAdress() {
return adress;
}
public void setAdress(String adr) {
this.adress = adr;
}
public void show() {
System.out.println("Address is " + adress);
}
}
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>se.springtest</groupId>
<artifactId>spring-hello</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>spring-hello</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>se.springtest.App</mainClass>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6.SEC02</version>
</dependency>
</dependencies>
</project>
И я компилируюэто с
mvn clean compile exec:java
но я получаю
Name is Olle Olsson
null
вместо
Name is Olle Olsson
Adress is Storgatan 1
Было бы очень полезно, если бы кто-то мог сказать мне, в чем проблема.Это сделало бы меня и, возможно, других лучше понимающими ДИ ...