JdbcTemplate를 사용한 DB 작업
개요
JdbcTemplate 클래스의 DELETE 작업 및 SELECT 작업 방법 사용
소스 코드
public class TestCommon {
@Autowired
private JdbcTemplate jdbctemplate;
/**
* テーブルデータ削除メソッド
*
* @param tableName テーブル名
* @return クエリ実行結果
*/
public Integer delete(String tableName) {
String deleteSql = "DELETE FROM " + tableName;
return jdbctemplate.update(deleteSql);
}
/**
* 指定テーブルの全レコードを取得
*
* @param tableName テーブル名
* @return クエリ結果
*/
public List<Map<String, Object>> selectAll(String tableName) {
String selectSql = "SELECT * FROM " + tableName;
return jdbctemplate.queryForList(selectSql);
}
/**
* 指定テーブルの指定カラムの全レコードを取得
*
* @param tableName テーブル名
* @param columns カラム
* @return クエリ結果
*/
public List<Map<String, Object>> selectId(String tableName, String[] columns) {
String selectSql = "SELECT " + String.join(",", columns) + " FROM " + tableName;
return jdbctemplate.queryForList(selectSql);
}
}
git
Reference
이 문제에 관하여(JdbcTemplate를 사용한 DB 작업), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/kenta123/articles/c43cc7e471e5e5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)