Spring Security(Third Edition)
上QQ阅读APP看书,第一时间看更新

Running a secured application

If you have not already done so, restart the application and visit http://localhost:8080/. You will be presented with the following screen: 


Great job! We've implemented a basic layer of security in our application using Spring Security. At this point, you should be able to log in using user1@example.com as User and user1 as Password. You'll see the calendar welcome page, which describes at a high level what to expect from the application in terms of security.

Your code should now look like chapter02.01-calendar.