后台数据显示到jsp页面的select中去的思路:
1、查询dao层的数据库接口得到满足条件的数据
2、将list中的数据传到request范围到jsp页面
3、页面迭代显示到指定的select节点下
具体举例如下:
导入必要的包
<%@ page import="java.sql.*" %>
<%ResultSet resultset =null;%>
Select element drop down box<%
try{
//Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection =
DriverManager.getConnection
("jdbc:mysql://localhost/city?user=root&password=root");
Statement statement = connection.createStatement() ;
resultset =statement.executeQuery("select * from new") ;
%>
Drop down box or select element
<%
}
catch(Exception e)
{
out.println("wrong entry"+e);
}
%>
运行结果: