I am currently working with MongoDB in Java and do not want to use the mongo-java driver which is very time consuming to code and also hard to maintain. I thought developing my own mongo-JDBC driver (since the one available is commercial). Am I on the right track.?
Also should I use some framework instead of pure jdbc .?
I am not sure about such frameworks for NoSQL databases. Kindly guide?
You can use Spring JDBC instead of pure JDBC and Spring Data MongoDB for MongoDB. They are quite easy to use.