Spring Security Token Based Authentication | Code Factory

Download and Code and Jars : Link

File : index.jsp

File : welcome.jsp

File : 403.jsp

File : Action.java

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class Action {
@RequestMapping("sendData")
public ModelAndView sendData(@RequestParam("username") String username,
@RequestParam("password") String password) {
return new ModelAndView("welcome");
}
@RequestMapping("403")
public ModelAndView sendData(Exception e) {
return new ModelAndView("403");
}
}

File : SpringSecurity.java

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class Action {
@RequestMapping("sendData")
public ModelAndView sendData(@RequestParam("username") String username,
@RequestParam("password") String password) {
return new ModelAndView("welcome");
}
@RequestMapping("403")
public ModelAndView sendData(Exception e) {
return new ModelAndView("403");
}
}

File : web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>SpringSecurityTokenCheck</display-name>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-security.xml
</param-value>
</context-param>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

File : spring-servlet.xml

<context:component-scan base-package="com.codeFactory.controller"></context:component-scan><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
<property name="prefix" value="/" />
<property name="suffix" value=".jsp" />
</bean>

<mvc:annotation-driven> </mvc:annotation-driven>
</beans>

File : spring-security.xml

<beans:beans xmlns="http://www.springframework.org/schema/security" 
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security.xsd">
<http pattern="/securityNone" security="none" /><http use-expressions="true">
<access-denied-handler error-page="/403" />
<intercept-url pattern="/**" />
<http-basic />
<csrf />
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="user1" password="user1Pass" authorities="ROLE_USER" />
</user-service>
</authentication-provider>
</authentication-manager>

</beans:beans>

Screenshorts :

Index page :

Welcome page :

403 page :

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store