Added root RequestMapping annotation to ManagerController.java - Spring requires there to be a mapping on the root of controllers.
AuthZ server is up, needs further testing to see if it is behaving as expected.pull/59/head
parent
7e4e1c9fa9
commit
00822e0ead
|
@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
|
@RequestMapping("/manager")
|
||||||
public class ManagerController {
|
public class ManagerController {
|
||||||
|
|
||||||
@RequestMapping({"/", "/home", "/index"})
|
@RequestMapping({"/", "/home", "/index"})
|
||||||
|
|
|
@ -6,7 +6,9 @@
|
||||||
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
|
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
|
||||||
<context-param>
|
<context-param>
|
||||||
<param-name>contextConfigLocation</param-name>
|
<param-name>contextConfigLocation</param-name>
|
||||||
<param-value>/WEB-INF/spring/application-context.xml</param-value>
|
<param-value>
|
||||||
|
/WEB-INF/spring/application-context.xml
|
||||||
|
</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
|
|
||||||
<!-- Creates the Spring Container shared by all Servlets and Filters -->
|
<!-- Creates the Spring Container shared by all Servlets and Filters -->
|
||||||
|
@ -14,6 +16,19 @@
|
||||||
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
||||||
</listener>
|
</listener>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Since we defined a custom authorization-endpoint-url, we need an additional filter: -->
|
||||||
|
<filter>
|
||||||
|
<filter-name>oauth2EndpointUrlFilter</filter-name>
|
||||||
|
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
|
||||||
|
</filter>
|
||||||
|
|
||||||
|
<filter-mapping>
|
||||||
|
<filter-name>oauth2EndpointUrlFilter</filter-name>
|
||||||
|
<url-pattern>/*</url-pattern>
|
||||||
|
</filter-mapping>
|
||||||
|
|
||||||
<!-- filter through Spring Security -->
|
<!-- filter through Spring Security -->
|
||||||
<filter>
|
<filter>
|
||||||
<filter-name>springSecurityFilterChain</filter-name>
|
<filter-name>springSecurityFilterChain</filter-name>
|
||||||
|
|
Loading…
Reference in New Issue