【发布时间】:2016-05-14 05:50:33
【问题描述】:
我正在谷歌应用引擎上使用 GWT java 开发项目。我想使用 https 访问我的应用程序,以便可以使用“myapp-dot-appspot.com”访问我的应用程序。但是,我想知道有什么用:
<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>
web.xml 中的配置。
【问题讨论】:
标签: java xml google-app-engine ssl gwt