将 html 表单添加到现有 servlet
我有一个现有的 servlet,它有一个表单并接收数据并正确执行。我们收到了一个新要求,即添加一个页面,允许用户通过 Web 表单修改 servlet 属性文件中的某些值。
我开发了一个包来做到这一点。我正在寻找一种将页面和包添加到现有 servlet 的方法。我不想为此在 Tomcat 上创建一个单独的 servlet。
我知道如何在现有 servlet 中创建新的 html 页面,但我不确定如何执行此类文件而不使其成为独立的 servlet。
任何帮助表示赞赏。
I have an existing servlet that has a form and takes in data and executes correctly. We've been given a new requirement to add a page that will allow the user to modify some of the values in the servlet properties file via a web form.
I've developed the package to do this. I'm looking for a way to add the page and package to the existing servlet. I would rather not create a separate servlet on Tomcat for this.
I know how to create new html pages in the existing servlet, but I'm unsure how to execute this class file without making it a standalone servlet.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了我的问题。看来我只需要添加额外的 servlet 到我的 web.xml 中。已解决。
I solved my problem. It seems I just needed to add the additional servlet to my web.xml. Resolved.