I have a database named "Foo" registered in couchDB. The db has 10 data type of "Person" object that has name and age. I want to fetch one or all of this type of data using this API via Java web application (Jersey rest service). After reading documentation from
https://github.com/helun/Ektorp I began to wonder if I need to create POJO in advance that maps to document registered in the database but I am not too sure. I was hoping that once I have CouchDbConnector I would be able to fetch existing data (document) from the database somehow but it seems like I have to create Person POJO in client application. Is that right?