gpt4 book ai didi

java - 在 j_security 表单的另一端调用用户名?

转载 作者:行者123 更新时间:2023-12-01 16:57:35 24 4
gpt4 key购买 nike

我有这个 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/

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