作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个 j 安全表单,但我一直不知道如何将用户名带到下一页
<form action="j_security_check" name="loginForm" method="post">
<h:outputLabel for="username" value="Username:" />
<input type="text" id="username" name="j_username" size="20"/>
<h:outputLabel for="password" value="Password:" />
<input type="password" id="password" name="j_password" size="20"/>
<br/>
<h:message for="user" title="User"/>
<button value="Submit" type="submit" outcome="securityvalid">Submit</button>
<button value="Reset" type="reset">Reset</button>
</form>
我想要一个运行这样的 servlet...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
<%
out.print(username);
%>
我本质上想要用户登录后可以在第一页上用作字符串的用户名
最佳答案
如果您只打印用户名,则需要确保它具有白名单字符,例如。字母、数字。使用正则表达式过滤它的最佳方法:[a-zA-Z0-9]
如果您想使用 HTML 元素格式化用户名(例如 <a href=userId>Username</a>
),您需要在清理程序库中清理您的元素,例如 OWASP Java Sanitizer
关于java - 在 j_security 表单的另一端调用用户名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61563997/
我是一名优秀的程序员,十分优秀!