From d003094f89def8d5d81eb0c154901d2084b729a3 Mon Sep 17 00:00:00 2001 From: Eugen Paraschiv Date: Tue, 10 Sep 2013 16:31:41 +0300 Subject: [PATCH] change in project structure --- spring-security-basic-auth/.project | 2 +- .../org.eclipse.wst.common.component | 6 +- .../src/main/webapp/WEB-INF/web.xml | 81 ++++++++----------- .../src/main/webapp/WEB-INF/web.xml | 72 ++++++++++------- 4 files changed, 79 insertions(+), 82 deletions(-) diff --git a/spring-security-basic-auth/.project b/spring-security-basic-auth/.project index 74e667d477..9126103207 100644 --- a/spring-security-basic-auth/.project +++ b/spring-security-basic-auth/.project @@ -1,6 +1,6 @@ - spring-security-basic-auth + spring-security-mvc-basic-auth diff --git a/spring-security-basic-auth/.settings/org.eclipse.wst.common.component b/spring-security-basic-auth/.settings/org.eclipse.wst.common.component index 83a7bf94e7..9a8276c85b 100644 --- a/spring-security-basic-auth/.settings/org.eclipse.wst.common.component +++ b/spring-security-basic-auth/.settings/org.eclipse.wst.common.component @@ -1,10 +1,10 @@ - + - - + + diff --git a/spring-security-basic-auth/src/main/webapp/WEB-INF/web.xml b/spring-security-basic-auth/src/main/webapp/WEB-INF/web.xml index 461f32bde5..0d08bdb9b9 100644 --- a/spring-security-basic-auth/src/main/webapp/WEB-INF/web.xml +++ b/spring-security-basic-auth/src/main/webapp/WEB-INF/web.xml @@ -1,52 +1,37 @@ - - - Spring Security Basic Auth Application - - - - contextClass - + + Spring Security Basic Auth Application + + contextClass + org.springframework.web.context.support.AnnotationConfigWebApplicationContext - - - contextConfigLocation - org.baeldung.spring - - - - org.springframework.web.context.ContextLoaderListener - - - - - mvc - org.springframework.web.servlet.DispatcherServlet - 1 - - - mvc - / - - - - - springSecurityFilterChain - org.springframework.web.filter.DelegatingFilterProxy - - - springSecurityFilterChain - /* - - - - index.html - - + + + contextConfigLocation + org.baeldung.spring + + + org.springframework.web.context.ContextLoaderListener + + + mvc + org.springframework.web.servlet.DispatcherServlet + 1 + + + mvc + / + + + springSecurityFilterChain + org.springframework.web.filter.DelegatingFilterProxy + + + springSecurityFilterChain + /* + + + index.html + \ No newline at end of file diff --git a/spring-security-rest-basic-auth/src/main/webapp/WEB-INF/web.xml b/spring-security-rest-basic-auth/src/main/webapp/WEB-INF/web.xml index 712c84acdf..1ab8806632 100644 --- a/spring-security-rest-basic-auth/src/main/webapp/WEB-INF/web.xml +++ b/spring-security-rest-basic-auth/src/main/webapp/WEB-INF/web.xml @@ -1,34 +1,46 @@ - - Spring Security Custom Application - - contextClass - + + + Spring Security Custom Application + + + + contextClass + org.springframework.web.context.support.AnnotationConfigWebApplicationContext - - - contextConfigLocation - org.baeldung.spring - - - org.springframework.web.context.ContextLoaderListener - - - api - org.springframework.web.servlet.DispatcherServlet - 1 - - - api - /api/* - - - springSecurityFilterChain - org.springframework.web.filter.DelegatingFilterProxy - - - springSecurityFilterChain - /* - + + + contextConfigLocation + org.baeldung.spring + + + + org.springframework.web.context.ContextLoaderListener + + + + + api + org.springframework.web.servlet.DispatcherServlet + 1 + + + api + /api/* + + + + + springSecurityFilterChain + org.springframework.web.filter.DelegatingFilterProxy + + + springSecurityFilterChain + /* + + \ No newline at end of file