jsp语法

java依赖包


界面导入c标签

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
jsp语法_第1张图片
jsp界面添加tablag扩展标签库

基本语法

1. java存变量

@Controller
@RequestMapping("study")
public class StudyController {
    @RequestMapping("init.action")
    public String init(HttpSession session){
        List students=new ArrayList();
        for(int i=0;i<7;i++){
            Object student=new Object ();
        }
        session.setAttribute("students", students);
        return "study/checkTask";
    }
}

2. jsp取变量

${students}

3. jsp遍历集合

        
            

4. jsp条件判断

            
                

4. 下拉框和选项




5. 格式化时间对象

第一步,引入工具包:

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

第二步,调用格式化标签:

1、显示星期几:


2、显示年月日:


3、显示时分秒:


遍历HashMap


${entry.key}

//迭代得到键所有的

包含其它jsp或者html文件

静态包含:<%@include file="被包含页面"%>和动态包含:

判断集合是否为空



你可能感兴趣的:(jsp语法)