Time for action – adding a login page
We are going to use Spring Security features to restrict access to the add products page. Only an authorized user with a valid username and password will be able to access the add products page. Let's see how we can do this in Spring MVC with the following steps:
- We open
pom.xml
, which can be found under the project root folder itself. - We will be able to see some tabs at the bottom, under the
pom.xml
file; we select the Dependencies tab and click on the Add button of the Dependencies section. - A Select Dependency window will appear; here, we enter Group Id as
org.springframework.security
, Artifact Id asspring-security-config
, Version as3.1.4.RELEASE
, and select Scope ascompile
and click on the OK button. - Similarly, ...
Get Spring MVC Beginner’s Guide now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.