<Is there a way to check on SpringBoot if the xml ...
# stackoverflow
r
Is there a way to check on SpringBoot if the xml file has a common query condition? SELECT * FROM foo_table WHERE id = #{id} limit 1 SELECT * FROM foo_table WHERE status = #{status} limit 1 I want to make sure that the condition 'limit 1' is in all queries. Is there a way to check in Spring test ?