我需要将大型 XML 数据存储到 CLOB 并将 CLOB 转换回 String
但问题是我们正在使用(Spring NamedParameterJdbc 模板)
SqlParameterSource paramSource = new BeanPropertySqlParameterSource(
positionResponsesDO);
this.jdbcTemplate.update(sql, paramSource);
PositionResponsesDO 具有获取和设置属性的位置
private Clob xmlData;
现在我需要将字符串数据(大)转换为 Clob,将 Clob 转换为字符串。请向我建议最好的方法。
我不能使用文件操作,因为它是 WebApp