SpringBoot + Oracle重构研究生系统踩坑记录

java.sql.SQLException: 不支持的字符集 (在类路径中添加 orai18n.jar): ZHS16GBK

在pom.xml文件中添加如下依赖:

    cn.easyproject

    orai18n

    12.1.0.2.0

jdbcTemplate查询映射Bean

return jdbcTemplate.query("SELECT id, xm, xbm FROM xj where xh='...........'",new BeanPropertyRowMapper<>(User.class));

你可能感兴趣的:(SpringBoot + Oracle重构研究生系统踩坑记录)