我是AngularJs的新手,使用html页面处理Angular, 我有整合弹簧安全, 我添加了依赖
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>3.1.3.RELEASE</version>
</dependency>
在home.jsp中,以下代码将起作用
<%@ taglib uri="http://www.springframework.org/security/tags" prefix="sec"%>
<sec:authentication property="name"/> <sec:authentication property="authorities"/>
现在我有了home.html,因为我正在研究Angularjs 我不知道如何在html页面中实现相同的功能。 我想使用spring security内置功能。</ p>