Can Spring hibernate alone create a complete website? I have to use Spring mvc, hibernate. Also, what will i have to use to ensure that it cannot be hacked?
You need neither Spring nor Hibernate to create a web site. You can use them to make development simpler.
Security is a large topic that cannot be addressed in a forum post like this. Several useful links/articles are listed at http://www.coderanch.com/how-to/java/SecurityFaq#web-apps. SQL injection and cross-site scripting (XSS) are probably the most widely used forms of attack against web apps nowadays.
Kunal Lakhani
Ranch Hand
Joined: Jun 05, 2010
Posts: 611
posted
0
Ok. I have got a project, i.e a full functioning website. And i have to use only Spring Hibernate.
Also just using Spring and Hibernate does not make a website. You need a web framework, most Java web frameworks are built on top of Servlet/JSP spec except for Play Framework.