I am developing a web application using spring MVC and I have hosted this using tomcat. I have a requirement where I want to integrate apache-solr to my search engine.
I tried looking on internet for various tutorials but couldn't find a proper one to explain the steps.
So my requirements are
- How to integrate apache solr in spring MVC using maven dependency(I am using tomcat to host the server)
- Basic tutorials to add data files with solr
- How can I integrate it to pick up the data from my database. I am using hibernate to map my database tables.
After going through some tutorials I think spring-data-solr is suitable for spring MVC.
P.S. I am new to all the above technologies.