2

我在 struts.xml 中定义了一个拦截器,如下所示:

<interceptor name="ssoAuthenticationInterceptor" class="net.ysccc.sso.authentication.AuthenticationInterceptor">
            <param name="casServerLoginUrl">http://localhost:8080/cas/login</param>
            <param name="serverName">http://localhost:8080</param>
            <param name="renew">false</param>
            <param name="gateway">false</param>
        </interceptor>

现在在拦截器类中我想要获取参数,有一种方法是在类中定义getter setter方法,但我不想使用这种方式,谁能告诉我该怎么做?

4

1 回答 1

0

对所有参数使用 Getter 和 Setter,属性在 Interceptor 中必须是公共的。

casServerLoginUrl
serverName
renew
gateway
于 2013-12-16T19:10:34.910 回答