spring security3.x学习(20)_初探authorize标签和第四个例子
本文为转载学习 原文链接: http://blog.csdn.net/dsundsun/article/details/11880743 第四个例子也就是spring security3那本书中的第五章的例子。 csdn下载: http://download.csdn.net/detail/dulei294948/6295933 (包含完整的jar包) 突然想说个闲事啊。做java或者什么都行,但是必须要学一下uml设计。因为又一个很好的uml设计才能表达更多的想法。。 分享一个同事推荐给我的书: http://download.csdn.net/detail/dulei294948/6278559 ,没事的时候可以看看。。 继续学习spring security.... 一些很好用的标签: 举例: 配置文件: <intercept-url pattern="/account/*.do" access="hasRole('ROLE_USER') and fullyAuthenticated"/> jsp页面中: 引入标签 <%@ taglib prefix = "sec" uri = "http://www.springframework.org/security/tags"%> 使用 <sec:authorize url="/account/home.do"> <c:url