4

私のスタンドアロン アプリケーションは Spring JDBC を使用します。

System.out に次のステートメントがたくさんあります。

Mar 28, 2013 6:42:12 PM org.springframework.jdbc.core.JdbcTemplate extractReturnedResults
INFO: Added default SqlReturnUpdateCount parameter named #update-count-1

これらのログを防ぐにはどうすればよいですか?

4

2 に答える 2

3

I got around this by skipping the undeclared results, which I don't need anyway

JdbcTemplate jt = new JdbcTemplate(dataSource);
jt.setSkipUndeclaredResults(true); 
于 2013-03-28T16:52:33.740 に答える
0

関数呼び出しは次の形式で記述できます。

Select function_name(args) from dual;

上記のクエリでは、JdbcTemplate で任意の一致する関数を使用できます

これが問題の解決に役立つことを願っています。

于 2019-07-23T09:19:19.797 に答える