• Post Reply 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

Which is Best Front End Web page Technology to design a Web Application using Sprin

 
Ranch Hand
Posts: 674
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there.

I am design a Web Applications using Spring+Hibernate+MySQL+Glassfish.

I want some help on Project Architecture that what should I Use for Front End Design of Web Page(JSP or Servlet).

And If One of them is good with Spring then a Little explanation


Thanks
 
Ranch Hand
Posts: 672
4
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSP is a front end technology(view), servlet is not, so you cannot compare JSP and Servlet.

It all depends on the project requirements on which technology to use in the front end.
Spring very well integrates with almost all front end technologies(views) like JSP, velocity, Freemarker..
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The answer to "which is the best ..." questions are opinions and not objective facts, so I hope you are not expecting to get an objective answer to this question.

Thymeleaf is a templating engine which has support for Spring, someone at the company I'm working at has used it for a demo Spring MVC webapp and it works well. Some of the Spring guides are also using Thymeleaf.
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Spring itself provides seamless integration with Spring MVC, i would suggest you should use Spring MVC as a best front end technology.
 
Jesper de Jong
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Sharma Rishi wrote:Spring itself provides seamless integration with Spring MVC, i would suggest you should use Spring MVC as a best front end technology.


Spring MVC itself is not a front-end technology. It's an MVC framework, and you get to choose any of a number of possible things for the V (View) part, for example: JSP, Velocity templates, Freemarker templates, Thymeleaf templates, etc.
 
Sharma Rishi
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jesper de Jong wrote:

Sharma Rishi wrote:Spring itself provides seamless integration with Spring MVC, i would suggest you should use Spring MVC as a best front end technology.


Spring MVC itself is not a front-end technology. It's an MVC framework, and you get to choose any of a number of possible things for the V (View) part, for example: JSP, Velocity templates, Freemarker templates, Thymeleaf templates, etc.



Hey you are right, i misunderstood the question... :-)
 
Kishor Joshi
Ranch Hand
Posts: 674
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks to all for your suggestion
 
I'm doing laundry! Look how clean this tiny ad is:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic