如何将类设置为bean中的值?

时间:2015-10-20 11:05:24

标签: java spring javabeans

我正在用豆子做我的第一步,我想给学生一个宿舍,这也是一个班级。我做错了什么?

public class Student {
private String name;
private String id;
private Hostel hostel;
//getters and setters under this

public class Hostel {
private String hostelName;
private String city;
//also getters and setters

beanpart

<bean id="student" class="com.tom.demo.Student" autowire="byName">
    <property name="name" value="Sönke Huster"></property>
    <property name="id" value="s81862322B"></property>
</bean>

<bean id="student1" class="com.tom.demo.Student">
    <property name="name" value="Thomas Bruhn"></property>
    <property name="id" value="s8232322"></property>
     <property name="hostel" value="aushos"/>

</bean>

<bean id="hostel" class="com.tom.demo.Hostel">
    <property name="hostelName" value ="Bangladore East Hostel"></property>
    <property name="city" value="Bangladore"></property>
</bean>

<bean id="aushos" class="com.tom.demo.Hostel">
    <property name="hostelName" value ="Easy Go Backpackers"></property>
    <property name="city" value="Sydney"></property>
</bean>

我的结果是:

Failed to convert property value of type `java.lang.String` to required type `com.tom.demo.Hostel` for property `hostel`; nested exception is `java.lang.IllegalStateException`

我已经尝试谷歌或用铸造修复它,但我的知识有限。所以请帮助我。

2 个答案:

答案 0 :(得分:0)

如果要引用另一个Spring bean,请使用属性ref:

<property name="hostel" ref="aushos"/>

答案 1 :(得分:0)

旅馆是一个豆子,所以它应该被引用而不是复制。所以使用     <property name="hostel" ref="aushos"/> &#34; REF&#34; attribute是引用bean,value属性是复制原始类型值。