JDBC

JDBCUtils

public class JDBCUtils {
    // 定義成員變量DataSource氧腰, 可以切換不同的連接池
    private static DataSource ds;

    // 初始化配置
    static {
        Properties properties = new Properties();
        try {
            properties.load(JDBCUtils.class.getClassLoader().getResourceAsStream("druid.properties"));
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            ds = DruidDataSourceFactory.createDataSource(properties);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 獲取連接
     */
    public static Connection getConnection() throws SQLException {
        return ds.getConnection();
    }

    /**
     * 釋放資源
     */
    public static void close(Statement stmt, Connection conn) {
        close(null, stmt, conn);

    }

    public static void close(ResultSet rs, Statement stmt, Connection conn) {
        if (stmt != null) {
            try {
                stmt.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

        if (conn != null) {
            try {
                conn.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        if (rs != null) {
            try {
                rs.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

    }

    /**
     * 獲取連接池方法
     */
    public static DataSource getDataSource() {
        return ds;
    }
}

druid.properties

driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/ljshuaige
username=root
password=root
# 初始化連接數(shù)量
initialSize=5
# 最大連接數(shù)
maxActive=10
# 最大等待時間
maxWait=3000

接口

public interface StudentDao
{
        // 學(xué)生列表 查詢所有學(xué)生
        public List<Student> findAll();
        //  保存某個學(xué)生
        public void save(Student student);
        //  刪除某個學(xué)生
        public void remove(Student student);
        //  修改某個學(xué)生
        public void update(Student student);
}

接口實現(xiàn)類

public class StudentDaoImpl implements StudentDao
{
    public List<Student> findAll() {
        Connection conn =null;
        Statement stmt =null;
        ResultSet rs =null;
        ArrayList<Student> list=null;
        try{
            conn = JDBCUtils.getConnection();
            String sql="select * from studentmanage";
            stmt = conn.createStatement();
            rs = stmt.executeQuery(sql);
            list=new ArrayList<>();
            while(rs.next()){
                 int id=rs.getInt("id");
                 String name=rs.getString("name");
                 String gender=rs.getString("gender");
                 int score=rs.getInt("score");
                 String addr=rs.getString("addr");
                 int tel=rs.getInt("tel");

                Student student=new Student(id,name,gender,score,addr,tel);
                list.add(student);
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            JDBCUtils.close(rs, stmt, conn);
        }
        return list;

    }


    @Override
    public void save(Student student) {
        Connection conn=null;
        PreparedStatement pstmt=null;
        try{
            conn= JDBCUtils.getConnection();
            String sql= "insert into studentmanage values(null,?,?,?,?,?);";
            pstmt=conn.prepareStatement(sql);
            pstmt.setString(1,student.getName());
            pstmt.setString(2, student.getGender());
            pstmt.setInt(3, student.getScore());
            pstmt.setString(4, student.getAddr());
            pstmt.setInt(5, student.getTel());


            int count=pstmt.executeUpdate();
            System.out.println("count"+ count );

        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            JDBCUtils.close(pstmt,conn);
        }
    }

    @Override
    public void remove(Student student) {
        Connection conn=null;
        PreparedStatement pstmt=null;
        try{
            conn= JDBCUtils.getConnection();
            String sql= "delete from studentmanage where id=?;";
            pstmt=conn.prepareStatement(sql);
            pstmt.setInt(1,student.getId());
            int count=pstmt.executeUpdate();
            System.out.println("count"+ count );

        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            JDBCUtils.close(pstmt,conn);
        }
    }

    @Override
    public void update(Student student) {

        Connection conn=null;
        PreparedStatement pstmt=null;
        try{
            conn= JDBCUtils.getConnection();
            String sql= "update studentmanage set name=?, gender =?,  score=?, addr = ?, tel=? where id=?;";
            pstmt=conn.prepareStatement(sql);
            pstmt.setString(1,student.getName());
            pstmt.setString(2, student.getGender());
            pstmt.setInt(3, student.getScore());
            pstmt.setString(4, student.getAddr());
            pstmt.setInt(5, student.getTel());
            pstmt.setInt(6, student.getId());

            int count=pstmt.executeUpdate();
            System.out.println("count"+ count );

        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            JDBCUtils.close(pstmt,conn);
        }
    }
}

定義類

public class Student
{
    private int id;
    private String name;
    private String gender;
    private int score;
    private String addr;
    private int tel;


    public Student()
    {
    }

    public Student(int id, String name, String gender, int score, String addr, int tel)
    {
        this.id = id;
        this.name = name;
        this.gender = gender;
        this.score = score;
        this.addr = addr;
        this.tel = tel;
    }
    public Student( String name, String gender, int score, String addr, int tel)
    {
        this.name = name;
        this.gender = gender;
        this.score = score;
        this.addr = addr;
        this.tel = tel;
    }

    public Student(int id)
    {
        this.id = id;
    }

    public int getId()
    {
        return id;
    }

    public void setId(int id)
    {
        this.id = id;
    }

    public String getName()
    {
        return name;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public String getGender()
    {
        return gender;
    }

    public void setGender(String gender)
    {
        this.gender = gender;
    }

    public int getScore()
    {
        return score;
    }

    public void setScore(int score)
    {
        this.score = score;
    }

    public String getAddr()
    {
        return addr;
    }

    public void setAddr(String addr)
    {
        this.addr = addr;
    }

    public int getTel()
    {
        return tel;
    }

    public void setTel(int tel)
    {
        this.tel = tel;
    }

    @Override
    public String toString()
    {
        return "Student{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", gender='" + gender + '\'' +
                ", score=" + score +
                ", addr='" + addr + '\'' +
                ", tel=" + tel +
                '}';
    }

}

實現(xiàn)類

public class MainStudent
{
    public static void main(String[] args) {
        System.out.println("-------- 歡迎登錄low版學(xué)生管理系統(tǒng)---------");

        StudentDaoImpl studentDao = new StudentDaoImpl();
        System.out.println("----------學(xué)生列表------------------------");
        List<Student> list = studentDao.findAll();
        for (Student s:list){
            System.out.println(s);
        }
       /* System.out.println("----------保存學(xué)生------------------------");
        Student s2 = new Student("王五","男",70,"大連",150);
        studentDao.save(s2);
        List<Student> list1 = studentDao.findAll();
        for (Student s:list1){
            System.out.println(s);
        }*/
        // new Student
//        studentDao.save();

        // 修改
        /*System.out.println("----------修改------------------------");
        Student s1 = new Student(1,"李四","男",99,"錦州",139);
        studentDao.update(s1);
        List<Student> list2 = studentDao.findAll();
        for (Student s:list2){
            System.out.println(s);
        }*/
        // 刪除
        System.out.println("----------刪除------------------------");
        Student s3 = new Student(3);
        studentDao.remove(s3);
        List<Student> list3 = studentDao.findAll();
        for (Student s:list3){
            System.out.println(s);
        }
    }
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子戏羽,更是在濱河造成了極大的恐慌纠屋,老刑警劉巖忧陪,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件厘托,死亡現(xiàn)場離奇詭異食呻,居然都是意外死亡流炕,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進(jìn)店門仅胞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來每辟,“玉大人,你說我怎么就攤上這事干旧∏郏” “怎么了?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵椎眯,是天一觀的道長挠将。 經(jīng)常有香客問我,道長编整,這世上最難降的妖魔是什么舔稀? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮掌测,結(jié)果婚禮上内贮,老公的妹妹穿的比我還像新娘。我一直安慰自己汞斧,他們只是感情好夜郁,可當(dāng)我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著粘勒,像睡著了一般竞端。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上仲义,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天婶熬,我揣著相機(jī)與錄音,去河邊找鬼埃撵。 笑死,一個胖子當(dāng)著我的面吹牛虽另,可吹牛的內(nèi)容都是我干的暂刘。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼捂刺,長吁一口氣:“原來是場噩夢啊……” “哼谣拣!你這毒婦竟也來了募寨?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤森缠,失蹤者是張志新(化名)和其女友劉穎拔鹰,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體贵涵,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡列肢,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了宾茂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片瓷马。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖跨晴,靈堂內(nèi)的尸體忽然破棺而出欧聘,到底是詐尸還是另有隱情,我是刑警寧澤端盆,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布怀骤,位于F島的核電站,受9級特大地震影響焕妙,放射性物質(zhì)發(fā)生泄漏蒋伦。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一访敌、第九天 我趴在偏房一處隱蔽的房頂上張望凉敲。 院中可真熱鬧,春花似錦寺旺、人聲如沸爷抓。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蓝撇。三九已至,卻和暖如春陈莽,著一層夾襖步出監(jiān)牢的瞬間渤昌,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工走搁, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留独柑,地道東北人。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓私植,卻偏偏與公主長得像忌栅,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子曲稼,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,452評論 2 348