我正在将项目从JSP迁移到JSF。
在JSP页面中,我有这些导入
<%@ page import="org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter"%>
<%@ page import="org.springframework.security.core.AuthenticationException"%>
<%@ page import="org.springframework.security.web.WebAttributes"%>
JSP中这些导入的目的是什么?我问它,因为JSF登录页面没有它。从这一点开始,我有另一个问题,我应该用JSF页面中的任何内容替换它吗?
答案 0 :(得分:1)
http://docs.oracle.com/javaee/5/tutorial/doc/bnahe.html
JSP转换为servlet并进行编译。这意味着在Java中你需要在使用它们之前导入类。
如果它没有工作,那么开发者只需复制/粘贴一些JSP就可以创建这个JSP。
只需查看JSP代码,是否有可以使用它的Java
代码?
你也可以在这里阅读一下:What is the difference between JSF, Servlet and JSP?