import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* @author liwen406
* @Title: username
* @Description: 用戶表 testngdb
* @date 2019/3/19 / 12:24
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
public class UserName implements Serializable {
private Integer uid;
private String username;
private String passwrd;
private Integer age;
}
/**
* 用戶保存
* @param user
*/
public int save(UserName user);
private JdbcTemplate template = new JdbcTemplate(JDBCUtils.getDataSource());
@Override
public int save(UserName user) {
//1.定義sql
String sql = "INSERT INTO user_table(username,passwrd,age,uid) VALUES (?,?,?,?)";
//2.執(zhí)行sql
int update = template.update(sql, user.getUsername(),
user.getPasswrd(),
user.getAge(),
user.getUid()
);
return update;
}
import com.alibaba.druid.pool.DruidDataSourceFactory;
import javax.sql.DataSource;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
/**
* @author liwen406
* @Title: JDBCUtils
* @Description: 1. 聲明靜態(tài)數(shù)據(jù)源成員變量
* 2. 創(chuàng)建連接池對象
* 3. 定義公有的得到數(shù)據(jù)源的方法
* 4. 定義得到連接對象的方法
* 5. 定義關閉資源的方法
* @date 2019/3/20 / 13:34
*/
public class JDBCUtils {
// 1. 聲明靜態(tài)數(shù)據(jù)源成員變量
private static DataSource ds;
// 2. 創(chuàng)建連接池對象
static {
// 加載配置文件中的數(shù)據(jù)
InputStream is = JDBCUtils.class.getClassLoader().getResourceAsStream("druid.properties");
Properties pp = new Properties();
try {
pp.load(is);
// 創(chuàng)建連接池,使用配置文件中的參數(shù)
ds = DruidDataSourceFactory.createDataSource(pp);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
// 3. 定義公有的得到數(shù)據(jù)源的方法
public static DataSource getDataSource() {
return ds;
}
// 4. 定義得到連接對象的方法
public static Connection getConnection() throws SQLException {
return ds.getConnection();
}
// 5.定義關閉資源的方法
public static void close(Connection conn, Statement stmt, ResultSet rs) {
if (rs != null) {
try {
rs.close();
} catch (SQLException e) {
}
}
if (stmt != null) {
try {
stmt.close();
} catch (SQLException e) {
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException e) {
}
}
}
// 6.重載關閉方法
public static void close(Connection conn, Statement stmt) {
close(conn, stmt, null);
}
}
druid.properties
---------------------------------------------------
driverClassName=com.MySQL.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/testngdb?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
username=root
password=123456
initialSize=5
maxActive=10
maxWait=3000
validationQuery: SELECT 1
testWhileIdle: true
timeBetweenEvictionRunsMillis: 28000
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
UsernameDaoimpl usernameDaoimpl = new UsernameDaoimpl();
@Test
public void usersabe() {
UserName name = new UserName();
name.setUsername("加油學習");
name.setPasswrd("12345645");
String encodedPassword = passwordEncoder.encode(name.getPasswrd().trim());
name.setPasswrd(encodedPassword);
name.setAge(33);
name.setUid(33);
int save = usernameDaoimpl.save(name);
log.info("插入成功:"+save);
//INSERT INTO user_table(username,passwrd,age,uid) VALUES('100121','$2a$10$GDHqk.gGI9l84i7ZLrMzGOzAP9WZ8tJY8iWobdDj/KyRBNvhPMiTG',23,293);
}
插入數(shù)據(jù)成功
成都創(chuàng)新互聯(lián)長期為上1000+客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為新豐企業(yè)提供專業(yè)的網(wǎng)站設計、網(wǎng)站建設,新豐網(wǎng)站改版等技術服務。擁有十余年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
標題名稱:JdbcTemplate學習筆記
網(wǎng)址分享:http://aaarwkj.com/article6/pcchig.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供App開發(fā)、建站公司、品牌網(wǎng)站建設、網(wǎng)站導航、網(wǎng)站排名、云服務器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)