使用 Java 自动生成 URL 和电子邮件
我想生成一封包含 URL 的电子邮件(指向 Struts 1.3 中的特定 Action 子类)。
问题:
- 如何生成电子邮件。
- 如何创建调用 struts 操作控制器的 URL。 ?
- 如何隐藏某些jsp页面,以便它们不会因URL格式错误而被意外调用?
- 如何使用问题2中描述的URL调用这个隐藏的jsp页面?
如何处理这个问题?
I want to generate an email containing a URL( to a specific Action subclass in Struts 1.3 ).
Questions :
- How to generate the email.
- How to create a URL which calls a struts action controller. ?
- How to hide certain jsp pages so that they cannot be called accidentally by malforming the URL ?
- How to call this hidden jsp page using the URL described in question 2. ?
How to approach the problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/WEB-INF
文件夹下,这样就不会有人意外地浏览你的 JSP来自网络的文件。用户访问该资源的唯一方法是通过 Struts 操作 (*.do
),该操作将确定哪些 JSP 文件要显示在屏幕上。/WEB-INF
folder so that no one can accidentally browse your JSP files from the web. The only way the user can get to that resource is through your Struts actions (*.do
) and the action will determine which JSP files to be displayed on the screen.