Spring security x509使用spring security 2.0.4进行身份验证

Spring security x509使用spring security 2.0.4进行身份验证,spring-security,x509certificate,Spring Security,X509certificate,我是春天安全的新手。 有人能为我提供使用spring 2.0.4进行x509证书身份验证的示例应用程序吗?您可以使用基本设置获得x509身份验证: <http> <x509: subject-principal-regex"(.*)" user-service-ref="myUserService"/> <intercept-url pattern="/**" access="ROLE_USER" requires-channel="https"/>

我是春天安全的新手。 有人能为我提供使用spring 2.0.4进行x509证书身份验证的示例应用程序吗?您可以使用基本设置获得x509身份验证:

<http>
   <x509: subject-principal-regex"(.*)" user-service-ref="myUserService"/>
   <intercept-url pattern="/**" access="ROLE_USER" requires-channel="https"/>
</http>