Reading Data with MyBatis
Example code is available on github.com/vaadin-on-grails/mybatis.
This article shows how to work with MyBatis in Groovy application. We will fetch data from database and show them on UI.
Step 1
Create Item
class that will represent a database entity. This class will be used by MyBatis as a data transfare object. MyBatis will automatically fetch values from database in to an instance of Item
class.
Step 2
Create mapper interface for Item
class. Then this mapper will be referenced from XML mapping file.
Step 3
Create src/groovy/com/app/mappers/ItemMapper.xml
XML mapper file and define SQL query that will be executed when findById
method is called.
Step 4
To try out whether MyBatis is working, create Item
database table and insert there a new record. So, we can fetch it later in Vaadin UI.
Step 5
Here is an example of how to get the mapper and fetch values from database. Get the bean from the context Grails.get(ItemMapper)
and call the method findById(1)
.
ItemMapper
implementation is provided by mybatis-spring.
When grails run-app
is executed the application is started, a value Sample
is fetched from database and displayed in the web browser.
Last updated
Was this helpful?