前言
本人初学JavaWeb,在此简单做下笔记,方便查阅。如有错误,欢迎大家指出!
jsp 从web.xml读取连接数据库的参数,然后显示在界面上
使用application对象提供的方法获取Web项目的全局配置文件信息。
配置文件web.xml配置信息示例如下
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--配置第一个参数driver-->
<context-param>
<param-name>driver</param-name>
<param-value>com.mysql.jdbc.Driver</param-value>
</context-param>
<!--配置第一个参数url-->
<context-param>
<param-name>url</param-name>
<param-value>jdbc:mysql://localhost:3306/inspurwebdemo04</param-value>
</context-param>
<!-- 配置第一个参数user数据库用户名-->
<context-param>
<param-name>user</param-name>
<param-value>root</param-value>
</context-param>
<!-- 配置第一个参数pass数据库密码-->
<context-param>
<param-name>pass</param-name>
<param-value>123456</param-value>
</context-param>
</web-app>
因为第7-10行的存在所以要到mysql的jar包,比如:mysql-connector-java-xxx.jar
12-15行,最后那个inspurwebdemo04为数据库的名称
17-20行,数据库登录名
22-25行,数据库登录密码
MySQL数据库表
JSP代码
<%@ page import="java.sql.Connection" %>
<%@ page import="java.sql.DriverManager" %>
<%@ page import="java.sql.Statement" %>
<%@ page import="java.sql.ResultSet" %><%--
Created by IntelliJ IDEA.
User: 15131900589
Date: 2022/9/28
Time: 14:58
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>application对象方法获取Web配置信息</title>
</head>
<body>
<%
//从配置参数中获取驱动
String driver = application.getInitParameter("driver");
//从配置参数中获取数据库URL
String url = application.getInitParameter("url");
//从配置参数中获取用户名
String user = application.getInitParameter("user");
//从配置参数中获取密码
String pass = application.getInitParameter("pass");
//注册驱动
Class.forName(driver);
//获取数据库连接
Connection conn = DriverManager.getConnection(url,user,pass);
//创建Statement对象
Statement stmt = conn.createStatement();
//执行查询
ResultSet rs = stmt.executeQuery("Select * from student");
%>
<h2>查询学生信息</h2>
<table bgcolor="#99CCFF" border="1" >
<tr>
<th>姓名</th>
<th>年龄</th>
<th>家庭住址</th>
</tr>
<%
//遍历结果集
while (rs.next()) {
%>
<tr>
<td><%=rs.getString(1)%></td>
<td><%=rs.getInt(2)%></td>
<td><%=rs.getString(3)%></td>
</tr>
<%
}
%>
</table>
</body>
</html>
本文来自浪潮优派课本例题。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/91175.html