jsp 指令分类,可分静态指令和动态指令。
静态指令有page、include。其中page指令中属性包含language、import、contentType、session、buffer、autoFlash、isThreadSafe、info、errorPage、isErrorPage这10个属性。
动态指令包含include、forward、param、useBean、setProperty、getProperty六个。include是带参数包含文件指令;forward用来重定向网页;param用来在动态页面或者要跳转页面传递参数;useBean在jsp中非常重要,它用来分离静态页面内容和动态页面内容,它还可以用来开发组建。setProperty来设置Bean中的属性,getProperty用来获取Bean中属性值。