自定义tomcat的用户身份验证弹出窗口

时间:2011-07-12 17:20:52

标签: authentication tomcat popup tomcat7

我想自定义弹出的对话窗口,要求用户进行身份验证。我正在使用tomcat基本身份验证;当用户点击受保护的页面时,会出现一个显示

的对话框
  

http://localhost:8080正在请求用户名和密码。该网站说:“需要验证”

我很确定我在某处读到可以更改此消息。有人知道怎么做或在哪里?

1 个答案:

答案 0 :(得分:4)

Tomcat正在使用您可以在web.xml中配置的域名

  <login-config>
    <auth-method> BASIC </auth-method>
    <realm-name> Example Basic Authentication </realm-name>
  </login-config>

例如,请参阅http://oreilly.com/java/archive/tomcat-tips.html