这是我的方法。如您所见,我正在使用本机 sql 来执行 INSERT 查询。
public void addNews(String title, String content) {
Session session = null;
session = this.sessionFactory.getCurrentSession();
Query query = session
.createSQLQuery(
"INSERT INTO news VALUES(NULL,:title,:content,NULL)")
.setString("title", title).setString("content", content);
int updated = query.executeUpdate();
}
安全吗?或者我该如何改进我的方法?