自定义tomcat的用户认证弹窗

发布于 2024-11-19 19:42:09 字数 257 浏览 3 评论 0原文

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

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

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

I would like to customize the dialog window that pops up asking users to authenticate. I am using tomcat basic authentication; currently when the user hits a protected page they get a dialog box that says

A username and password are being requested by http://localhost:8080. The site says: "Authentication required"

I am pretty sure that I read somewhere that it is possible to change this message. Does anybody know how or where?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事风中埋 2024-11-26 19:42:09

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

Tomcat is using the realm name you can configure in web.xml

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

See, for example http://oreilly.com/java/archive/tomcat-tips.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文