gpt4 book ai didi

css - 为什么我的 Spring Security login.jsp 会吐出 CSS,我该如何修复它?

转载 作者:技术小花猫 更新时间:2023-10-29 10:38:53 24 4
gpt4 key购买 nike

我使用 Spring Security 和 JSP 页面为旧版 Java Web 应用程序创建了自定义登录页面。遗留应用程序不使用 Spring MVC。我在 MyEclipse 中预览它,它应用了我的 CSS 样式。但是当我在 Debug模式下运行它并用 Firefox 查看它时,它出现了问题。 1) CSS 未呈现。 2) 提交表单后,它被重定向到CSS文件,因此浏览器显示CSS文件的文本!

我已经研究这个问题好几天了,在这个网站或任何其他网站上都没有找到解决方案。我以前从未使用过 JSP 或 Spring Security,所以我什至不确定罪魁祸首。谁能指出我哪里搞砸了?

我的login.jsp 文件:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" session="true"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:url value="/user_pass_login" var="loginUrl"/>
<html>

<HEAD>
<link href="Tracker.css" type="text/css" rel="stylesheet">
<TITLE>ATP3 Login</TITLE>
</HEAD>

<body onload='document.loginForm.username.focus();'>
<DIV id="login_body"
align="center" >
<h1>Sample Tracker Login</h1>

<form id="loginForm" name="loginForm" action="${loginUrl}" method="post">
<c:if test="${param.error != null}">
<div class="alert alert-error">
Failed to login.
<c:if test="${SPRING_SECURITY_LAST_EXCEPTION != null}">
<BR /><BR />Reason: <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}" />
</c:if>
</div>
</c:if>
<c:if test="${param.logout != null}">
<div class="alert alert-success">You have been logged out.</div>
</c:if>
<BR />
<label for="username">Username:</label>
<input
type="text"
id="username"
name="username" />
<BR />
<BR />
<label for="password">Password: </label>
<input
type="password"
id="password"
name="password" />
<BR />
<BR />
<div class="form-actions">
<input
id="submit"
class="btn"
name="submit"
type="submit"
value="Login" />
</div>
</form>
</DIV>
</body>
</html>

登录后,我被重定向到我的 CSS 文件 Tracker.css 的 url:

/** Add css rules here for your application. */


/** Example rules used by the template application (remove for your app) */
h1 {
font-size: 2em;
font-weight: bold;
color: #000555;
margin: 40px 0px 70px;
text-align: center;
}

#login_body, #formLogin {
color: #000555;
background-color: #F6FCED;
}

.sendButton {
display: block;
font-size: 16pt;
}

/** Most GWT widgets already have a style name defined */
.gwt-DialogBox {
width: 400px;
}

...

在思考@Santosh Joshi 所说的内容后,我检查了我的 Spring Security 配置 XML 文件中的安全设置。这是正在发生的事情:

  1. login.jsp 首次加载时,它无法访问 Tracker.css 文件,因为安全设置阻止了它(请参阅下面的更正文件),因此页面未格式化。
  2. 当用户成功登录时,找到了 CSS 文件,但由于 JSP 格式不正确,它只是弹出 CSS 文件。

修复

  1. 我修改了 login.jsp 如下:
    1. 删除带有 xml 定义的第 1 行
    2. 将带有 url 变量声明的第 4 行移动到表单标签的正上方
    3. 在 JSP 指令下方添加一个 html 文档类型定义
  2. 我向 Spring Security XML http 标记添加了权限行

新的login.jsp文件

<!DOCTYPE html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" session="true"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>

<HEAD>
<link href="Tracker.css" type="text/css" rel="stylesheet">
<TITLE>ATP3 Login</TITLE>
</HEAD>

<body onload='document.loginForm.username.focus();'>
<DIV id="login_body"
align="center" >
<h1>Sample Tracker Login</h1>

<c:url value="/user_pass_login" var="loginUrl"/>
<form id="loginForm" name="loginForm" action="${loginUrl}" method="post">
<c:if test="${param.error != null}">
<div class="alert alert-error">
Failed to login.
<c:if test="${SPRING_SECURITY_LAST_EXCEPTION != null}">
<BR /><BR />Reason: <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}" />
</c:if>
</div>
</c:if>
<c:if test="${param.logout != null}">
<div class="alert alert-success">You have been logged out.</div>
</c:if>
<BR />
<label for="username">Username:</label>
<input
type="text"
id="username"
name="username" />
<BR />
<BR />
<label for="password">Password: </label>
<input
type="password"
id="password"
name="password" />
<BR />
<BR />
<div class="form-actions">
<input
id="submit"
class="btn"
name="submit"
type="submit"
value="Login" />
</div>
</form>
</DIV>
</body>
</html>

这是安全 XML 文件中的一个片段。请注意 Tracker.css 的新拦截 url 标记:

<!-- This is where we configure Spring-Security  -->
<http auto-config="true"
use-expressions="true"
disable-url-rewriting="true">
<intercept-url pattern="/"
access="permitAll"/>
<intercept-url pattern="/login*"
access="permitAll"/>
<intercept-url pattern="/login*/*"
access="permitAll"/>
<intercept-url pattern="/favicon.ico"
access="permitAll"/>
<intercept-url pattern="/Tracker.css"
access="permitAll"/>
<intercept-url pattern="/**"
access="hasAnyRole('ROLE_ADMIN','ROLE_WRITE','ROLE_READ')"/>
<form-login login-page="/login.jsp"
login-processing-url="/user_pass_login"
username-parameter="username"
password-parameter="password" />
</http>

最佳答案

CSS 的路径似乎有问题,你把CSS 放在哪里了

<link href="Tracker.css" type="text/css" rel="stylesheet"/>

您还可以使用 firebug 在 Firefox 中调试您的应用程序,如果它不适用则意味着 CSS 没有正确下载,只需检查 Firefox 中的控制台是否有 404 或其他错误。还要考虑 Firefox 到底想从哪里得到这个(URLFirefox 指的是)CSS。

关于css - 为什么我的 Spring Security login.jsp 会吐出 CSS,我该如何修复它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19895039/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com