我使用jetty FormAuthenticator来验证像这样的登录数据
FormAuthenticator authenticator = new FormAuthenticator("login", "login", false);
在登录表单中,我有
<form method='POST' action='app/j_security_check'>
</form>
问题是当我运行测试时,如果我键入此URL
localhost:8080/app/j_security_check
我收到500错误。除此之外,所有其他不正确的url案例都可以重定向。有办法处理这个吗?我试过过滤器,它不起作用。感谢