2010-05-03 149 views
6

而不是阅读;Spring Security 3.0-自定义基本http身份验证对话框

http://localhost:8080正在请求用户名和密码。该网站说:“弹簧安全应用程序”

我想改变提示,或至少改变“网站说”。有谁知道如何通过resources.xml来做到这一点?

在我的Grails App Spring配置中,我现在的版本如下;

<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/security" 
    xmlns:beans="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 
         http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd"> 
    <http auto-config="true" use-expressions="true"> 
     <http-basic/> 
     <intercept-url pattern="/**" access="isAuthenticated()" /> 
    </http> 

    <authentication-manager alias="authenticationManager"> 
     <authentication-provider> 
      <user-service> 
       <user name="admin" password="admin" authorities="ROLE_ADMIN"/> 
      </user-service> 
     </authentication-provider> 
    </authentication-manager> 
</beans:beans> 

回答

9

你不能改变它。您的应用程序仅向浏览器发送“Spring安全应用程序”部分。提示的其他部分由您的浏览器添加。

要更改“Spring Security的应用程序”的一部分,你可以使用realm属性<http>元素:

<http realm = "My Application" ... > 
+0

欢呼声让我知道。 – gav 2010-05-03 16:33:36

+0

真棒,正是我需要的。感谢名单。 – 2011-03-30 08:24:24

相关问题