Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Website using Spring hibernate

 
Ranch Hand
Posts: 622
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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?
 
Saloon Keeper
Posts: 7590
177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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 https://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
Posts: 622
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Ok. I have got a project, i.e a full functioning website. And i have to use only Spring Hibernate.
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
I replied to your other thread.

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.

Mark
 
Kunal Lakhani
Ranch Hand
Posts: 622
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Yes Mark. That was completely a new topic, so i started a new thread for that. Spring WEB MVC wont work all alone?
 
    Bookmark Topic Watch Topic
  • New Topic