Fill a form with saved cookies(用保存的 cookie 填写表格)
问题描述
我有一个像这样保存我的 cookie 的操作类:
I have an action class that saves my cookies like this:
public String execute() {
// Save to cookie
Cookie name = new Cookie("name", userInfo.getName() );
name.setMaxAge(60*60*24*365); // Make the cookie last a year!
servletResponse.addCookie(name);
}
如果我提交表单,我可以在浏览器上看到已创建并保存的 cookie.当用户提交时,他们会被重定向到一个新页面,该页面包含他们刚刚创建的所有存储信息.
If I submit my form, I can see the cookies on the browser that has been created and saved. When the user submits, they get redirected to a new page, a page with all the stored information that they just created.
我希望用户能够返回提交页面并查看他们刚刚提交的表单中的所有信息.是否可以使用 Struts2 执行此操作,使用保存的 Cookie 并获取表单以填写旧数据?
I want the user to be able to go back to the submit page and see all the information in the forms that they just submitted. Is it possible to do this with Struts2, by using the saved Cookies and get the form to fill in with the old data?
这是我的表格:
<s:textfield
label="Name"
name="name"
key="name"
tooltip="Enter your Name here"/>
推荐答案
要发送 cookie,您可以使用 cookie-provider 拦截器.它允许您通过实现 CookieProvider
在操作中填充 cookie.要将此拦截器应用于操作配置,您可以覆盖拦截器配置
To send cookie you can use a cookie-provider interceptor. It allows you to populate cookies in the action via implementing CookieProvider
. To apply this interceptor to the action configuration you can override the interceptors config
<action ... >
<interceptor-ref name="defaultStack"/>
<interceptor-ref name="cookieProvider"/>
...
</action>
CookieProvider
有方法实现,
public class MyAction extends ActionSupport implements CookieProvider {
@Override
public Set<Cookie> getCookies(){
Set<Cookie> cookies = new HashSet<>();
Cookie name = new Cookie("name", userInfo.getName() );
name.setMaxAge(60*60*24*365); // Make the cookie last a year!
name.setPath("/"); //Make it at root.
cookies.add(name);
return cookies;
}
}
在表格中
<s:set var="name">${cookie["name"].value}</s:set>
<s:textfield
label="Name"
name="name"
value="%{#name}"
tooltip="Enter your Name here"/>
这篇关于用保存的 cookie 填写表格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:用保存的 cookie 填写表格
基础教程推荐
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01