PostgreSQL
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> PostgreSQL

Cách sử dụng PostgreSQL hstore / json với JdbcTemplate

Mặc dù khá muộn để có câu trả lời (cho phần chèn), tôi hy vọng nó có thể hữu ích cho người khác:

Lấy các cặp khóa / giá trị trong HashMap:

Map<String, String> hstoreMap = new HashMap<>();
hstoreMap.put("key1", "value1");
hstoreMap.put("key2", "value2");

PGobject jsonbObj = new PGobject();
jsonbObj.setType("json");
jsonbObj.setValue("{\"key\" : \"value\"}");

sử dụng một trong những cách sau để chèn chúng vào PostgreSQL:

1)

jdbcTemplate.update(conn -> {
     PreparedStatement ps = conn.prepareStatement( "INSERT INTO table (hstore_col, jsonb_col) VALUES (?, ?)" );
     ps.setObject( 1, hstoreMap );
     ps.setObject( 2, jsonbObj );
});

2)

jdbcTemplate.update("INSERT INTO table (hstore_col, jsonb_col) VALUES(?,?)", 
new Object[]{ hstoreMap, jsonbObj }, new int[]{Types.OTHER, Types.OTHER});

3) Đặt hstoreMap / jsonbObj trong POJO (hstoreCol thuộc loại Bản đồ và jsonbObjCol thuộc loại PGObject)

BeanPropertySqlParameterSource sqlParameterSource = new BeanPropertySqlParameterSource( POJO );
sqlParameterSource.registerSqlType( "hstore_col", Types.OTHER );
sqlParameterSource.registerSqlType( "jsonb_col", Types.OTHER );
namedJdbcTemplate.update( "INSERT INTO table (hstore_col, jsonb_col) VALUES (:hstoreCol, :jsonbObjCol)", sqlParameterSource );

Và để nhận được giá trị:

(Map<String, String>) rs.getObject( "hstore_col" ));
((PGobject) rs.getObject("jsonb_col")).getValue();


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. LỖI:truy vấn không có đích cho dữ liệu kết quả

  2. Tìm các bài báo trong đó mảng

  3. Áp dụng `trim ()` và `regexp_replace ()` trên mảng văn bản

  4. Cách tăng kết nối tối đa trong PostgreSQL

  5. Làm cách nào để chạy ứng dụng python và postgres trong một vùng chứa docker?