我的 autoconfig.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:context="http//www.springframework.org/schema/context"
xmlns:p="http//www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd">
<context:annotation-config/>
<bean class="com.autowire.annotation.Address" name="address">
<property name="city" value="New City" />
<property name="state" value="State" />
</bean>
<bean class="com.autowire.annotation.Emp" name="emp" />
</beans
我用过 autowired
我的中的注解 Emp.java
类中声明了 Address.java
班级。
我也试过 schemaLocation
没有使用任何版本,但我仍然得到错误。
我也在使用SpringCore和ContextVersion5以及JDKVersion11。
暂无答案!
目前还没有任何答案,快来回答吧!