Skip to content

Commit 80bb1a0

Browse files
committed
Upgrading application contexts.
1 parent 6b0b83c commit 80bb1a0

File tree

7 files changed

+20
-11
lines changed

7 files changed

+20
-11
lines changed

parent/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,11 @@
559559
<artifactId>spring-security-config</artifactId>
560560
<version>3.1.0.RELEASE</version>
561561
</dependency>
562+
<dependency>
563+
<groupId>org.springframework.security</groupId>
564+
<artifactId>spring-security-web</artifactId>
565+
<version>3.1.0.RELEASE</version>
566+
</dependency>
562567
<!-- X.509 dependencies -->
563568
<dependency>
564569
<groupId>net.sf.ehcache</groupId>

samples/airline/server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,10 @@
253253
<groupId>org.springframework.security</groupId>
254254
<artifactId>spring-security-config</artifactId>
255255
</dependency>
256+
<dependency>
257+
<groupId>org.springframework.security</groupId>
258+
<artifactId>spring-security-web</artifactId>
259+
</dependency>
256260
<dependency>
257261
<groupId>org.apache.activemq</groupId>
258262
<artifactId>activemq-core</artifactId>

samples/airline/server/src/main/resources/org/springframework/ws/samples/airline/dao/jpa/applicationContext-jpa.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:context="http://www.springframework.org/schema/context"
5-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
6-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
5+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
77

88
<context:component-scan base-package="org.springframework.ws.samples.airline.dao.jpa"/>
99

samples/airline/server/src/main/resources/org/springframework/ws/samples/airline/jms/applicationContext-jms.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:jms="http://www.springframework.org/schema/jms"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
6-
http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.0.xsd">
5+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6+
http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.1.xsd">
77

88
<!-- ===================== JMS TRANSPORT ===================================== -->
99

samples/airline/server/src/main/resources/org/springframework/ws/samples/airline/security/applicationContext-security.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:security="http://www.springframework.org/schema/security"
5-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
6-
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">
5+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6+
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">
77

88
<description>
99
This application context contains the WS-Security and Spring Security beans.

samples/airline/server/src/main/resources/org/springframework/ws/samples/airline/service/applicationContext.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:tx="http://www.springframework.org/schema/tx"
55
xmlns:context="http://www.springframework.org/schema/context"
6-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
7-
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
8-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
6+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
7+
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
8+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
99

1010
<tx:annotation-driven/>
1111

samples/airline/server/src/main/resources/org/springframework/ws/samples/airline/ws/applicationContext-ws.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:context="http://www.springframework.org/schema/context"
55
xmlns:sws="http://www.springframework.org/schema/web-services"
6-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
7-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
6+
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
7+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
88
http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd">
99

1010
<sws:annotation-driven />

0 commit comments

Comments
 (0)