手動(dòng)建Java web項(xiàng)目的方法,JSP,DBUtils,MySQL,下拉框,form表單顯示【詩書畫唱】
1、創(chuàng)建一個(gè)用戶類型utype表,包含id和tname(用戶類型名)字段,插入以下幾條數(shù)據(jù):
1 超級(jí)管理員
2 管理員
3 客戶
4 商戶
5 合作伙伴
通過jdbc編程將utype表中的tname拼接成一個(gè)下拉框顯示在jsp頁面上

create table utype
(
id int primary key auto_increment,
tname varchar(100)?
);
insert into utype(tname) values ("超級(jí)管理員"),('管理員' ),('客戶' ),('商戶' ),('合作伙伴' );
select * from utype





package com.SSHC.bean;
public class Utype {
? ? private Integer id;
? ? private String tname;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTname() {
return tname;
}
public void setTname(String tname) {
this.tname = tname;
}
}


package com.SSHC.DAO;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.SSHC.bean.Utype;
import com.SSHC.util.DBUtils;
//DAO(Data Access Object)是一個(gè)數(shù)據(jù)訪問接口,
//數(shù)據(jù)訪問:顧名思義就是與數(shù)據(jù)庫打交道。
//夾在業(yè)務(wù)邏輯與數(shù)據(jù)庫資源中間。
///DAO就是實(shí)現(xiàn)增刪改查的一個(gè)類
public class UtypeDao {
? ? //用XXXDao(XXX為表名比如Eduinfo),Eduinfo:教育信息。
///XXXDAO可查詢eduinfo表中的所有的數(shù)據(jù)。
//List用上泛型:
public List<Utype>selectAll(){
String sql = "select * from Utype";
Connection conn = null;
PreparedStatement pstm = null;
ResultSet rs = null;
List<Utype>list = new ArrayList<Utype>();
try {
// 下面用上DBUtils(當(dāng)然命名為Dbutil,也可以
// 自己知道是數(shù)據(jù)庫常用工具就可以了:
conn = DBUtils.getConn();
pstm = conn.prepareStatement(sql);
rs = pstm.executeQuery();
while(rs.next()) {
Integer id = rs.getInt("id");
String ename = rs.getString("tname");
//進(jìn)行打包:
Utype edu = new Utype();
edu.setId(id);
edu.setTname(ename);
//繼續(xù)打包:
list.add(edu);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}
public static void main(String[] args) {
UtypeDao ed = new UtypeDao();
List<Utype>list = ed.selectAll();
System.out.println(list.size());
}
}


package com.SSHC.util;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Properties;
public class DBUtils {
private static String driverName;
? ? private static String url;
? ? private static String user;
? ? private static String pwd;
? ??
? ? static {
? ??
? ? Properties prop = new Properties();
? ??
? ? InputStream is = DBUtils.class.getClassLoader()
? ? .getResourceAsStream("db.properties");
? ??
? ? try {
prop.load(is);
driverName = prop.getProperty("dn");
url = prop.getProperty("url");
user = prop.getProperty("un");
pwd = prop.getProperty("up");
} catch (IOException e) {
e.printStackTrace();
}
? ? }
? ??
??
? ? public static Connection getConn(){
? ? Connection conn = null;
? ? try {
Class.forName(driverName);
conn = DriverManager.getConnection(url,user,pwd);
} catch (Exception e) {
e.printStackTrace();
}? ?
? ? return conn;
? ? }
? ??
? ? public static void close(ResultSet rs,
? ? PreparedStatement pstm
? ? ,Connection conn){
? ? ? ? try {
? ? ? ? if(rs != null) {
? ? ? ? ? ? rs.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(pstm != null) {
? ? ? ? ? ? pstm.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(conn != null) {
? ? ? ? ? ? conn.close();
? ? ? ? ? ? }
? ? ? ? } catch(Exception e) {
? ? ? ? e.printStackTrace();
? ? ? ? }
? ? }
}


dn=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/firstjsp?useUnicode=true&characterEncoding=UTF-8
un=root
up=root


<%@page import="com.SSHC.bean.Utype"%>
<%@page import="java.util.List"%>
<%@page import="com.SSHC.DAO.UtypeDao"%>
<%@ page language="java" contentType
="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
//用selectAll()方法查詢eduinfo表中的所有的數(shù)據(jù):
? ? UtypeDao UtypeDao= new UtypeDao();
? ? List<Utype> list = UtypeDao.selectAll();
? ? //跳轉(zhuǎn)到study.jsp頁面,顯示出學(xué)歷下拉框
? ?/***用StringBuilder拼接html字符串,把內(nèi)容
? ?用append放進(jìn)html中,
? ?之后可以跳轉(zhuǎn)時(shí)用EL表達(dá)式? ?${html }直接調(diào)用:*/
? ? StringBuilder html = new StringBuilder();
? ? for(Utype U : list) {
? ? html.append("<option value='"?
? ? ? ? ? ? + U.getId() + "'>" + U.getTname()?
? ? ? ? ? ? + "</option>");
? ? } //有時(shí)用System.out.println(html)等來測(cè)試,找BUG等;
? ? request.setAttribute("html", html);
? ? request.getRequestDispatcher("forwardUtype.jsp")
? ? ? ? .forward(request, response);
%>


<%@ page language="java" contentType="text/html;?
charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()
? ? +"://"+request.getServerName()
? ? +":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
?4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords"?
? ? ? ? content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description"?
? ? ? ? content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <select>
? ? ? ? ? ? <option>請(qǐng)選擇</option>
? ? ? ? ? ? ${html }
? ? ? ? </select>
? ? </body>
</html>

運(yùn)行結(jié)果截圖:

info:信息

2、創(chuàng)建一個(gè)食品信息表foodinfo,包含id,name和price字段,插入一些數(shù)據(jù),通過jdbc編程將foodinfo表中的所有數(shù)據(jù)拼接成一個(gè)表格顯示在jsp頁面上。
要求使用bean,dao和DbUtils

create table foodinfo(
id int primary key auto_increment,
name varchar(100) ,
price? ?double
);
insert into? foodinfo(name,price) values ('詩書畫唱蘋果',66.6),('詩書畫唱香蕉',88.8 ),('詩書畫唱葡萄',23.3 ),('詩書畫唱桃子' ,13.14);
select * from foodinfo




package com.SSHC.bean;
public class foodinfo {
? ? private Integer id;
? ? private String name;
? ? private Double price;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
}


package com.SSHC.DAO;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.SSHC.Utils.DBUtils;
import com.SSHC.bean.foodinfo;
public class DAO {
? ??
public List<foodinfo>selectAll(){
String sql = "select * from foodinfo";
Connection conn = null;
PreparedStatement pstm = null;
ResultSet rs = null;
List<foodinfo> list = new ArrayList<foodinfo>();
try {
conn = DBUtils.getConn();
pstm = conn.prepareStatement(sql);
rs = pstm.executeQuery();
while(rs.next()) {
Integer id = rs.getInt("id");
String ename = rs.getString("name");
Double price = rs.getDouble("price");
//進(jìn)行打包
foodinfo edu = new foodinfo();
edu.setId(id);
edu.setName(ename);
edu.setPrice(price);
//繼續(xù)打包
list.add(edu);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}
public static void main(String[] args) {
DAO ed = new DAO();
List<foodinfo>list = ed.selectAll();
System.out.println(list.size());
}
}


package com.SSHC.Utils;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Properties;
public class DBUtils {
private static String driverName;
? ? private static String url;
? ? private static String user;
? ? private static String pwd;
? ??
? ? static {
? ? //讀取properties文件
? ? Properties prop = new Properties();
? ? //將db.properties文件讀取到內(nèi)存中去
? ? InputStream is = DBUtils.class.getClassLoader()
? ? .getResourceAsStream("db.properties");
? ? //加載內(nèi)容
? ? try {
prop.load(is);
//讀取內(nèi)容
driverName = prop.getProperty("dn");
//System.out.println(driverName);
url = prop.getProperty("url");
user = prop.getProperty("un");
pwd = prop.getProperty("up");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
? ? }
? ??
? ? //獲取數(shù)據(jù)庫連接對(duì)象的方法
? ? public static Connection getConn(){
? ? Connection conn = null;
? ? try {
Class.forName(driverName);
conn = DriverManager.getConnection(url,user,pwd);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}? ?
? ? return conn;
? ? }
? ??
? ? public static void close(ResultSet rs,PreparedStatement pstm
? ? ,Connection conn){
? ? ? ? try {
? ? ? ? if(rs != null) {
? ? ? ? ? ? rs.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(pstm != null) {
? ? ? ? ? ? pstm.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(conn != null) {
? ? ? ? ? ? conn.close();
? ? ? ? ? ? }
? ? ? ? } catch(Exception e) {
? ? ? ? e.printStackTrace();
? ? ? ? }
? ? }
}


dn=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/firstjsp?useUnicode=true&characterEncoding=UTF-8
un=root
up=root


<%@page import="com.SSHC.bean.foodinfo"%>
<%@page import="java.util.List"%>
<%@page import="com.SSHC.DAO.DAO"%>
<%@ page language="java" contentType
="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? DAO DAO= new DAO();
? ? List<foodinfo> list = DAO.selectAll();
? ? StringBuilder html = new StringBuilder();
? ? for(foodinfo U : list) {
??
? ? html.append("<tr><td>"?
? ? ? ? ? ? + U.getId() + "</td><td>" + U.getName()?
? ? ? ? ? ? + "</td><td>"+ U.getPrice() +"</td></tr>");
? ? }?
? ? request.setAttribute("html", html);
? ? request.getRequestDispatcher("two.jsp")
? ? ? ? .forward(request, response);
%>


<%@ page language="java" contentType="text/html;?
charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()
? ? +"://"+request.getServerName()
? ? +":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
?4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords"?
? ? ? ? content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description"?
? ? ? ? content="This is my page">
? ? </head>
? ? <body>
? ? ??
? ? ? ? ? <form action="two.jsp" method="post">
? ? ? ? ?<table border="1">
? ? ? ? ?
? ? ? ? ?<tr><td>編號(hào)</td><td>名稱</td><td>價(jià)格</td></tr>
? ? ? ? ${html }
? ? ? ? ?</table>
? ? ? ?
? ? ?</form>
? ? ? ? ? ?
? ??
? ? </body>
</html>


——————————
手動(dòng)建Java web項(xiàng)目的方法:









例子:
用form表單來傳內(nèi)容,用EL表達(dá)式和param.獲取傳過來的內(nèi)容:


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <form action="perform.jsp" method="post">
? ? ? ? ? ? <label>賬號(hào):</label>
? ? ? ? ? ? <input type="text" name="act" />
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="radio" name="sex" value="男">男
? ? ? ? ? ? <input type="radio" name="sex" value="女">女
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="submit" value="提交" />
? ? ? ? </form>
? ? </body>
</html>


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
? ? request.setCharacterEncoding("utf-8");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <!-- 如果是通過表單方式提交的值,
? ? ? ? ? ? ? ? ? ? ? ? ? 在EL表達(dá)式中就必須通過param對(duì)象點(diǎn)出來 -->
? ? ? ? <!-- request.getParameter("act"); -->
? ? ? ? <h1>你輸入的賬號(hào)是:${param.act }</h1>
? ? ? ? <h1>選擇的性別是:${param.sex }</h1>
? ? </body>
</html>




用上EL表達(dá)式的范圍變量的知識(shí),聲明一個(gè)變量的作用域范圍為session,在網(wǎng)頁,分別用
${requestScope.msg }和?session:${sessionScope.msg }獲取值,其中肯定只要session:${sessionScope.msg }能打印出內(nèi)容,${requestScope.msg }在這里不能打印出內(nèi)容:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
? ? String msg = "Hello world";
? ? //只從request作用域去找有沒有msg
? ? session.setAttribute("msg", msg);
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <!-- 詩書畫唱個(gè)人的理解:用上requestScope就是
? ? ? ? EL表達(dá)式僅從request作用域中去找有沒有msg變量
? ? ? ? ,如果msg變量的作用域?yàn)閞equest,哪么這里就會(huì)打印
? ? ? ? request,反之不會(huì)。這里上面的代碼聲明
? ? ? ? 為 String msg = "Hello world";
? ? ? ? session.setAttribute("msg", msg);所以
? ? ? ? 不會(huì)打印出"Hello world";
? ? ? ? ?-->
? ? ? ? request:${requestScope.msg }
? ? ? ? <br>
? ? ? ? <!--?
? ? ? ? 詩書畫唱個(gè)人的理解:用上sessionScope就是
? ? ? ? EL表達(dá)式僅從session作用域中去找有沒有msg變量,
? ? ? ? 這里msg的作用域范圍聲明為了session,那么
? ? ? ? 就會(huì)用${sessionScope.msg }在網(wǎng)頁打印?
? ? ? ? 出"Hello world"這個(gè)msg變量的被賦予的值-->
? ? ? ? session:${sessionScope.msg }
? ? </body>
</html>



讀取數(shù)據(jù)庫中的表中的數(shù)據(jù),將這些數(shù)據(jù)組裝成一個(gè)下拉框。
1、創(chuàng)建表eduinfo
2、在java代碼中創(chuàng)建一個(gè)這個(gè)表對(duì)應(yīng)的javabean,它的名字跟你的表名是一樣的Eduinfo
3、根據(jù)eduinfo表中的列來創(chuàng)建Eduinfo類的屬性,你的表中有幾個(gè)列javabean中就有一個(gè)屬性,而且屬性名要跟表的列名一致。
4、創(chuàng)建表對(duì)應(yīng)的數(shù)據(jù)訪問類(dao),EduinfoDao


連接名一開始是隨意的:

create table eduinfo(
id int primary key auto_increment,
ename varchar(100)?
);
--drop table? eduinfo
?--【個(gè)人的總結(jié):當(dāng)有一個(gè)列名設(shè)置為主鍵自增的時(shí)候就是在insert語句中注明列名,比如"(ename) ",
--不然會(huì)報(bào)錯(cuò).如果不指名列名,
--就會(huì)默認(rèn)插入"博士"到id列,但是數(shù)據(jù)類型不一樣,同時(shí)id是主鍵自增的,不可以插入內(nèi)容】
insert into eduinfo(ename) values ("博士"),('碩士' ),('本科' ),('大專' ),('高中' ),('初中' );
select * from eduinfo



package com.jy.bean;
public class Eduinfo {
? ? private Integer id;
? ? private String ename;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getEname() {
return ename;
}
public void setEname(String ename) {
this.ename = ename;
}
}



package com.jy.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.jy.bean.Eduinfo;
import com.jy.util.Dbutil;
//就是實(shí)現(xiàn)增刪改查的一個(gè)類
public class EduinfoDao {
? ? //用XXXDao(XXX為表名比如Eduinfo),Eduinfo:教育信息
//可查詢eduinfo表中的所有的數(shù)據(jù)
//List用上泛型:
public List<Eduinfo>selectAll(){
String sql = "select * from eduinfo";
Connection conn = null;
PreparedStatement pstm = null;
ResultSet rs = null;
List<Eduinfo>list = new ArrayList<Eduinfo>();
try {
// 下面用上DBUtils(當(dāng)然命名為Dbutil,也可以
// 自己知道是數(shù)據(jù)庫常用工具就可以了:
conn = Dbutil.getConn();
pstm = conn.prepareStatement(sql);
rs = pstm.executeQuery();
while(rs.next()) {
Integer id = rs.getInt("id");
String ename = rs.getString("ename");
//進(jìn)行打包:
Eduinfo edu = new Eduinfo();
edu.setId(id);
edu.setEname(ename);
//繼續(xù)打包:
list.add(edu);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return list;
}
public static void main(String[] args) {
EduinfoDao ed = new EduinfoDao();
List<Eduinfo>list = ed.selectAll();
System.out.println(list.size());
}
}


package com.jy.util;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Properties;
public class Dbutil {
private static String driverName;
? ? private static String url;
? ? private static String user;
? ? private static String pwd;
? ??
? ? static {
? ? //讀取properties文件
? ? Properties prop = new Properties();
? ? //將db.properties文件讀取到內(nèi)存中去
? ? InputStream is = Dbutil.class.getClassLoader()
? ? .getResourceAsStream("db.properties");
? ? //加載內(nèi)容
? ? try {
prop.load(is);
//讀取內(nèi)容
driverName = prop.getProperty("dn");
//System.out.println(driverName);
url = prop.getProperty("url");
user = prop.getProperty("un");
pwd = prop.getProperty("up");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
? ? }
? ??
? ? //獲取數(shù)據(jù)庫連接對(duì)象的方法
? ? public static Connection getConn(){
? ? Connection conn = null;
? ? try {
Class.forName(driverName);
conn = DriverManager.getConnection(url,user,pwd);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}? ?
? ? return conn;
? ? }
? ??
? ? public static void close(ResultSet rs,PreparedStatement pstm
? ? ,Connection conn){
? ? ? ? try {
? ? ? ? if(rs != null) {
? ? ? ? ? ? rs.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(pstm != null) {
? ? ? ? ? ? pstm.close();
? ? ? ? ? ? }
? ? ? ? ? ? if(conn != null) {
? ? ? ? ? ? conn.close();
? ? ? ? ? ? }
? ? ? ? } catch(Exception e) {
? ? ? ? e.printStackTrace();
? ? ? ? }
? ? }
}


dn=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/firstjsp?useUnicode=true&characterEncoding=UTF-8
un=root
up=root




<%@page import="com.jy.bean.Eduinfo"%>
<%@page import="java.util.List"%>
<%@page import="com.jy.dao.EduinfoDao"%>
<%@ page language="java" contentType
="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? //用selectAll()方法查詢eduinfo表中的所有的數(shù)據(jù):
? ? EduinfoDao eduinfoDao = new EduinfoDao();
? ? List<Eduinfo>list = eduinfoDao.selectAll();
? ? //跳轉(zhuǎn)到study.jsp頁面,顯示出學(xué)歷下拉框
? ?/***用StringBuilder拼接html字符串,把內(nèi)容
? ?用append放進(jìn)html中,
? ?之后可以跳轉(zhuǎn)時(shí)用EL表達(dá)式? ?${html }直接調(diào)用:*/
? ? StringBuilder html = new StringBuilder();
? ? for(Eduinfo edu : list) {
? ? html.append("<option value='"?
? ? ? ? ? ? + edu.getId() + "'>" + edu.getEname()?
? ? ? ? ? ? + "</option>");
? ? }
? ? //有時(shí)用System.out.println(html)等來測(cè)試,找BUG等;
? ? request.setAttribute("html", html);
? ? request.getRequestDispatcher("study.jsp")
? ? ? ? .forward(request, response);
%>


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <select>
? ? ? ? ? ? <option>請(qǐng)選擇</option>
? ? ? ? ? ? ${html }
? ? ? ? </select>
? ? </body>
</html>

運(yùn)行:

個(gè)人備注的注意事項(xiàng):


_____________________
下面是JSP的知識(shí)的集合:
一、頁面跳轉(zhuǎn)方式
二、傳參方式
在頁面中需要輸入日期框的時(shí)候,我們不能夠直接寫三個(gè)文本輸入框,可以使用腳本文件(從網(wǎng)上面下載)來引入一個(gè)日期框(JS文件)
在eclipse項(xiàng)目中使用日期框:
1、將日期腳本文件拷貝到工程WebContent目錄下(可以創(chuàng)建子文件夾)
2、創(chuàng)建jsp頁面,在頁面中引入日期腳本文件
"3、在頁面中編寫如下的代碼:
<input type=""text"" readonly?
? ? ? ? ? ? onclick=""new Calendar().show(this);"" />"
頁面跳轉(zhuǎn)的方式有兩種:
1、轉(zhuǎn)發(fā)
2、重定向
"區(qū)別:
1、瀏覽器地址欄顯示的最后的地址不同,轉(zhuǎn)發(fā)就顯示前面的請(qǐng)求的地址,而重定向會(huì)顯示最后跳轉(zhuǎn)的頁面的地址
2、轉(zhuǎn)發(fā)就是一次請(qǐng)求,重定向是兩次請(qǐng)求"
3、重定向可以跳轉(zhuǎn)到項(xiàng)目外面的頁面去
項(xiàng)目中一般建議使用轉(zhuǎn)發(fā)方式跳轉(zhuǎn)
JS代碼中優(yōu)先使用單引號(hào)
傳參方式:
"1、瀏覽器地址欄中直接傳入
http://localhost:8888/j190802/demo.jsp?act=admin&pwd=123&sex=男"
2、表單提交
一、getParameter和getAttribute的區(qū)別。
二、四大作用域:pageContext,request,session,application
三、EL表達(dá)式
getAttribute和setAttribute方法
getParameter和getAttribute的區(qū)別:
1、getParameter返回值是String,getAttribute返回值是Object
2、getParameter方法是一個(gè)單身狗,沒有對(duì)應(yīng)的setParameter方法
如果調(diào)用setAttribute方法,后面的程序中就必定會(huì)調(diào)用getAttribute方法
3、getParameter的使用場(chǎng)景:表單提交時(shí)獲取數(shù)據(jù),url路徑中夾帶的參數(shù)
getAttribute的使用場(chǎng)景:頁面轉(zhuǎn)發(fā)時(shí)調(diào)用。
pageContext,session和application跟request和response一樣,可以直接拿過來使用
"pageContext,request,session以及application叫jsp頁面的四大作用域,指的就是你放在這些對(duì)象中的變量在哪個(gè)范圍內(nèi)有效。
四大作用域?qū)ο蠖加衧etAttribute方法和getAttribute方法。"
pageContext:表示放在這個(gè)對(duì)象中(調(diào)用setAttribute方法)的變量在本JSP頁面有效
request:表示放在同一次請(qǐng)求中的變量有效
session:表示同一次會(huì)話中的變量有效
application:只要不重啟服務(wù)器,放在里面的變量就會(huì)一直有效
request:當(dāng)進(jìn)行頁面轉(zhuǎn)發(fā)時(shí)傳遞參數(shù)
session:當(dāng)實(shí)現(xiàn)購物車功能時(shí)就需要使用session
購物車:需要訪問很多的頁面和發(fā)送很多的搜索請(qǐng)求,購物車中的數(shù)據(jù)必須要一直有效。
一、作業(yè)講解
二、EL表達(dá)式
EL表達(dá)式就是JSP中的一種特有的語言,可以簡(jiǎn)化我們的java代碼。
EL表達(dá)式寫法:${表達(dá)式},注意:{}中間只能是表達(dá)式,不能是語句
EL表達(dá)式有兩種運(yùn)算符:.和[](JS對(duì)象的運(yùn)算符)
EL表達(dá)式可以寫在JSP頁面的任何地方
"EL表達(dá)式中的變量的顯示過程:會(huì)依次從pageContext,request,session以及
applicaion四個(gè)作用域中找這個(gè)變量,一旦找到了就返回這個(gè)值,如果四個(gè)作用域都找不到,就顯示為""""(不是顯示為null)"
一、EL表達(dá)式顯示map和list中的值。
二、通過EL表達(dá)式加載表單數(shù)據(jù),修改數(shù)據(jù)時(shí)使用
${}中比較兩個(gè)字符串是否相等,可以使用==也可以使用eq
${message == "success" ? "登錄成功" : "登錄失敗"}
${message eq "success" ? "登錄成功" : "登錄失敗"}
復(fù)習(xí)三大容器:List,Map,Set
List,Map和Set都是接口,所以不能夠直接new出來的
List最常用的實(shí)現(xiàn)類:ArrayList
Map最常用的實(shí)現(xiàn)類:HashMap
Set最常用的實(shí)現(xiàn)類:HashSet
一、EL表達(dá)式中的范圍變量
二、表單提交后的EL表達(dá)式
三、EL表達(dá)式
如果是通過表單方式提交的數(shù)據(jù),那么通過EL表達(dá)式獲取就必須使用param隱式對(duì)象
EL表達(dá)式中的范圍變量:
pageContext:pageScope
request:requestScope
session:sessionScope
application:applicationScope
上面四個(gè)scope變量都是用來替換getAttribute方法的
而param隱式對(duì)象就是用來替換getParameter方法的