在springboot中如何使用JDBC将当前日期插入数据库
时间: 2023-03-27 21:00:55 浏览: 165
你可以使用Java中的java.sql.Date类来获取当前日期,并使用JDBC将其插入数据库。具体步骤如下:
1. 首先,创建一个java.sql.Date对象,代码如下:
java.sql.Date currentDate = new java.sql.Date(System.currentTimeMillis());
2. 然后,使用JDBC连接数据库,并创建一个PreparedStatement对象,代码如下:
Connection conn = DriverManager.getConnection(url, username, password);
PreparedStatement ps = conn.prepareStatement("INSERT INTO table_name (date_column) VALUES (?)");
3. 接着,将当前日期作为参数设置到PreparedStatement对象中,代码如下:
ps.setDate(1, currentDate);
4. 最后,执行PreparedStatement对象的executeUpdate()方法,将数据插入到数据库中,代码如下:
ps.executeUpdate();
完整代码示例:
java.sql.Date currentDate = new java.sql.Date(System.currentTimeMillis());
Connection conn = DriverManager.getConnection(url, username, password);
PreparedStatement ps = conn.prepareStatement("INSERT INTO table_name (date_column) VALUES (?)");
ps.setDate(1, currentDate);
ps.executeUpdate();
阅读全文