to fixed problem if you see error like this “Mapped Statements collection does not contain value for“ , you need check your code and make sure the three names have to match:
– interface = your.Path.dao.YourClassInterface
– mapper file = /your/path/dao/YourClassInterface.xml
– mapper namespace = your.Path.dao.YourClassInterface
in .xml my batis mapper file, make sure namespace is your interface path and name, not your model/bean.
happy coding! 😛
Advertisements