我正在使用Google App Engine和GWT開發Web應用程序。 我使用的是與谷歌帳戶提供的驗證,所以我的web.xml文件包含這些行:未經驗證的GAE + GWT Servlet
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
我需要一個特定的servlet免於谷歌認證,因爲它會通過Android設備來調用。請不要提供驗證設備的方法,因爲它不適合我的需要。
如何設置我的項目,以便在身份驗證下確保所有內容都安全並且只有一個servlet不是?
它效果很好。真的很簡單。 – Ena
請注意,根據Servlets規範,爲了覆蓋工作,您應該在_global_''中明確列出您的servlet的''。 –