This web application is about posting different kind of posts to the web application where users can search those posts by a text-based search. Basically a post has following attributes.
Title
Description
Category
Budget
Submit_date
End_date
Currently, Post content is store in sql server database under 'Post' table. What I want to do is, implement a semantic search on this posts which are publish in the application. For an example, when a user type 'Education' in search field, system should search with the meaning of that word 'Education' rather than its text value. I like to go for a RDF/OWL based solution with Jena framework for this. But I really don't know how to start it since i'm a newbie to Semantic web. Help me to build this search. (its better if you can provide a sample application/codes).Thanks in advance.