如何从 chain.doFilter 的 XSSRequestWrapper 抛出异常
我想处理来自 XSSRequestWrapper 的异常。
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
chain.doFilter(new XSSRequestWrapper((HttpServletRequest) request), response);}
XSSEncoderRequestWrapper 类扩展了 HttpServletRequestWrapper。 在 XSSRequestWrapper 类中,我想验证电子邮件和姓名字段。如果它们无效,那么想要抛出一些客户异常。就像电子邮件无效一样。
I want to handle exceptions from XSSRequestWrapper.
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
chain.doFilter(new XSSRequestWrapper((HttpServletRequest) request), response);}
And class XSSEncoderRequestWrapper extends HttpServletRequestWrapper.
In XSSRequestWrapper class, I want to validate the email and name fields. If they are not valid then want to throw some customer exception. Like email is not valid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论