我想创建一个用户提供凭据的登录页面,然后让其他页面检查用户是否经过身份验证,然后再在 Undertow 中提供这些内部页面。
虽然该示例显示了如何对用户进行身份验证(最终将变成登录页面),但如果用户在身份验证后导航到另一个页面,我如何测试该新页面请求是否由经过身份验证的用户发出?
我参考了http://undertow.io/documentation/core/security.html和https://github.com/undertow-io/undertow/tree/master/examples/src/main/java/io/undertow/examples /安全/基本。