当前位置:   article > 正文

idea创建jsp项目与JDBC连接数据库_idea jsp加载jdbc

idea jsp加载jdbc

一、创建jsp项目

1.首先创建一个jsp项目
在这里插入图片描述
2.选中项目选项
在这里插入图片描述
3.选中java-》javaee 点击web选项 下一步
在这里插入图片描述
4.输入文件地址与项目名称 完成

二、添加数据库驱动

选择idea右上角的配置
在这里插入图片描述
选择Modules-》右边的加号-》选择数据库驱动如:mysql-connector-java-3.0.17-bin.jar,没有的可以在网上下载对应数据库的驱动
在这里插入图片描述

三、JDBC链接数据库

创建java文件测试连接数据库

package common;

/**
 * Created by huasheng on 2018/12/16.
 */
import java.sql.*;
/**
 * 
 * 测试数据库
 */
public class DBTest {
    //mysql驱动包名
    private static final String DRIVER_NAME = "com.mysql.jdbc.Driver";
    //数据库连接地址
    private static final String URL = "jdbc:mysql://localhost:3306/myuser";
    //用户名
    private static final String USER_NAME = "root";
    //密码
    private static final String PASSWORD = "336600";
    public static void main(String[] args){
        Connection connection = null;
        try {
            //加载mysql的驱动类
            Class.forName(DRIVER_NAME);
            //获取数据库连接
            connection = DriverManager.getConnection(URL, USER_NAME, PASSWORD);
            //mysql查询语句
            String sql = "SELECT * FROM `user`";
            PreparedStatement prst = connection.prepareStatement(sql);
            //结果集
            ResultSet rs = prst.executeQuery();
            while (rs.next()) {
                System.out.println("用户名:" + rs.getString("userid")+"   "+"密码:" + rs.getString("password"));
            }
            rs.close();
            prst.close();
        } catch (Exception e) {
            e.printStackTrace();
        }finally {
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

数据库
在这里插入图片描述
运行java文件结果
在这里插入图片描述
这样就说明已经连接数据库成功了!!!!!!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/512461
推荐阅读
相关标签
  

闽ICP备14008679号