如何配置 Spring Ws with keystore 和 trustore?

How to configure Spring Ws with keystore and trustore?

我应该把这些命令放在 Spring Ws

的什么地方
-Djavax.net.ssl.keyStore=tomcat.keystore
-Djavax.net.ssl.keyStorePassword=tomcat
-Djavax.net.ssl.trustStore=tomcat.keystore
-Djavax.net.ssl.trustStorePassword=tomcat
-Djavax.net.debug=SSL

我是否必须将它作为参数放置或在某些 class.I 中指定属性 Spring 基于 WS 注释的配置 我可以在应用程序本身中配置属性吗?

我找到了解决方案 我可以使用

设置属性
System.setproperty("-Djavax.net.debug","SSL");

或者我可以在服务器启动 运行ning 时用 tomcat7 指定这些参数。 转到eclipse->右键单击项目->单击运行配置->selecttomcat->select参数->粘贴属性->单击申请 然后重启tomcat