所以我有一個Spring配置文件:簡單的彈簧物業換人
<?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-2.5.xsd">
<bean id="DisputeId" class="com.mycompany.validation.Attributes">
<property name="validator" value="com.mycompany.validation.StringValidator" />
<property name="maxLen" value="21" />
<property name="nullable" value="false" />
</bean>
我只是想用線沿線的東西來取代「com.mycompany.validation.Attributes」「$ {} attributes.class」 。
我該怎麼做?我不需要在不同的文件中定義$ {attributes.class},而更喜歡它在這個相同的xml文件中。我知道我只是沒有尋找正確的條款...
謝謝!
嘗試 ,但無法找到在xml配置中引用已定義變量的方法,如$ {attrib.class}。我可能不會正確地做到這一點? –