0
我正在使用谷歌應用程序引擎上使用GWT java的項目。我想通過https訪問我的應用,以便使用「myapp-dot-appspot.com」訪問我的應用。不過,我想知道什麼是使用:在web.xml什麼是在谷歌應用程序引擎GWT中的web.xml中使用<security-constraint> Java
<security-constraint>
<web-resource-collection>
<web-resource-name>profile</web-resource-name>
<url-pattern>/profile/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
配置。