...
|
...
|
@@ -40,15 +40,17 @@ public class DaoImpl implements Dao { |
|
|
this.jdbcTemplate = jdbcTemplate;
|
|
|
}
|
|
|
|
|
|
public int insertRecord(final String oper, final String sndr) {
|
|
|
public int insertRecord(final String oper, final String sndr,String type,String styp) {
|
|
|
KeyHolder keyHolder = new GeneratedKeyHolder();
|
|
|
this.jdbcTemplate.update(new PreparedStatementCreator() {
|
|
|
public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
|
|
|
DaoImpl.logger.info("oper=" + oper + " sndr=" + sndr);
|
|
|
String sql = "insert into T_ETL_MESSAGE(OPER,SNDR,SNTM,content) values(?,?,sysdate,empty_clob())";
|
|
|
DaoImpl.logger.info("oper=" + oper + " sndr=" + sndr+"type="+type+"styp="+styp);
|
|
|
String sql = "insert into T_ETL_MESSAGE(OPER,SNDR,SNTM,content,TYPE,STYP) values(?,?,sysdate,empty_clob(),?,?)";
|
|
|
PreparedStatement ps = connection.prepareStatement(sql, new String[]{"FID"});
|
|
|
ps.setString(1, oper);
|
|
|
ps.setString(2, sndr);
|
|
|
ps.setString(3, type);
|
|
|
ps.setString(4, styp);
|
|
|
return ps;
|
|
|
}
|
|
|
}, keyHolder);
|
...
|
...
|
@@ -56,14 +58,14 @@ public class DaoImpl implements Dao { |
|
|
return generatedId;
|
|
|
}
|
|
|
|
|
|
public void saveRecord(String messaegType, String sndr, String xmlContent) throws Exception {
|
|
|
public void saveRecord(String messaegType, String sndr, String xmlContent,String type,String styp) throws Exception {
|
|
|
Connection conn = null;
|
|
|
Statement stmt = null;
|
|
|
ResultSet rs = null;
|
|
|
int fid = -100;
|
|
|
|
|
|
try {
|
|
|
fid = this.insertRecord(messaegType, sndr);
|
|
|
fid = this.insertRecord(messaegType, sndr,type,styp);
|
|
|
conn = this.jdbcTemplate.getDataSource().getConnection();
|
|
|
conn.setAutoCommit(false);
|
|
|
stmt = conn.createStatement();
|
...
|
...
|
|