You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2019/05/03 09:57:27 UTC

[cxf-fediz] branch master updated: examples: adopt jaxrsSpringSecurityWebapp to Spring Security 4.x

This is an automated email from the ASF dual-hosted git repository.

buhhunyx pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git


The following commit(s) were added to refs/heads/master by this push:
     new 4f15eb8  examples: adopt jaxrsSpringSecurityWebapp to Spring Security 4.x
4f15eb8 is described below

commit 4f15eb8b31d794499ea8f320289706c969ef6daa
Author: amarkevich <am...@talend.com>
AuthorDate: Fri May 3 12:57:10 2019 +0300

    examples: adopt jaxrsSpringSecurityWebapp to Spring Security 4.x
---
 .../src/main/webapp/WEB-INF/applicationContext-security.xml    | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/examples/jaxrsSpringSecurityWebapp/src/main/webapp/WEB-INF/applicationContext-security.xml b/examples/jaxrsSpringSecurityWebapp/src/main/webapp/WEB-INF/applicationContext-security.xml
index 9a3fa95..407520f 100644
--- a/examples/jaxrsSpringSecurityWebapp/src/main/webapp/WEB-INF/applicationContext-security.xml
+++ b/examples/jaxrsSpringSecurityWebapp/src/main/webapp/WEB-INF/applicationContext-security.xml
@@ -21,18 +21,12 @@
     xmlns:sec="http://www.springframework.org/schema/security"
     xmlns:p="http://www.springframework.org/schema/p"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:context="http://www.springframework.org/schema/context"
-    xmlns:util="http://www.springframework.org/schema/util"
     xmlns:jaxrs="http://cxf.apache.org/jaxrs" 
     xsi:schemaLocation="
         http://www.springframework.org/schema/security
-        http://www.springframework.org/schema/security/spring-security-3.2.xsd
+        http://www.springframework.org/schema/security/spring-security.xsd
         http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
-        http://www.springframework.org/schema/util
-        http://www.springframework.org/schema/util/spring-util-4.3.xsd
-        http://www.springframework.org/schema/context
-        http://www.springframework.org/schema/context/spring-context-4.3.xsd
         http://cxf.apache.org/jaxrs
         http://cxf.apache.org/schemas/jaxrs.xsd">
 
@@ -97,5 +91,5 @@
 
     <bean id="sas"
         class="org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy" />
-</beans>
 
+</beans>