DelegatingFilterProxy检索属性值

时间:2014-11-03 06:37:29

标签: spring spring-security

我正在使用以下过滤器配置web.xml

<filter>
    <filter-name>smplAuthenticationFilter</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    <init-param>
        <param-name>targetFilterLifecycle</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>

smplAuthenticationFilter的Bean定义如下所示:

<?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-3.0.xsd">

    <bean id="smplAuthenticationFilter" class="com.mycompany.ct.common.security.smpl.servletfilters.SmplActiveDirectoryServletFilter">
        <property name="databaseLoggerTarget" value="java:jdbc/smplDataSource" />
        <property name="smplSecurityCredentials" value="${adapter.security.smpl.credentials}" />
        <property name="smplSecurityPrincipal" value="${adapter.security.smpl.principal}" />
        <property name="smplSearchBase" value="${adapter.security.smpl.searchbase}" />
        <property name="smplProviderUrl" value="${adapter.security.smpl.providerurl}" />
        <property name="applicationName" value="smpl" />
    </bean>

</beans>

在此,我想知道smplSecurityCredentialssmplSecurityPrincipalsmplSearchBasesmplProviderUrl的属性值设置在何处?

换句话说,如何查找${adapter.security.smpl.credentials}等变量的值?

1 个答案:

答案 0 :(得分:0)

您的配置文件也应该有一些行,例如:

<context:property-placeholder location="..."/>

位置(或多个文件的位置)将告诉您属性的位置

此占位符声明可能不一定位于同一配置文件中。 但它必须放在相同的上下文定义中。 (对于相同的上下文,您可能有多个配置文件,可以使用导入,也可以在web.xml中为contextConfigLocation设置多个值)