我正在使用Spring 3.2.11.RELEASE。我有以下豆...
<beans:bean id=“customAuthenticationFilter"
class="org.mainco.subco.core.security.CustomAuthenticationFilter">
<beans:property name="filterProcessesUrl" value="/j_custom_value" />
…
从我的一个Spring类中,我想弄清楚“filterProcessUrl”属性的值。我可以做类似
的事情@Autowired
private CustomAuthenticationFilter myFilter
…
String value = myFilter.getFilterPRocessesUrl();
但是我想知道我是否能以某种方式将“filterProcessesUrl”值告诉成员字段(基本上将上面两行代码煮成一行)。我该怎么做呢?