可以在dao中写like,在service中拼接字符串
这样安全性更高(使用 PreparedStatement),同时service调用dao更加灵活
例如:
dao中 select * from 表 where 列 like ?
service就可以 A+‘%’ や ‘%’+A など 灵活调用dao封装成不同方法