Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

JSP?

  • 20-10-2009 11:05pm
    #1
    Closed Accounts Posts: 12,382 ✭✭✭✭


    Hello

    Apologies if this is a silly question.

    Last year in college I did a module on Java (concurrent programming using Java). I enjoyed the class and would now like to write a web application using Java.

    Am I right in thinking JSP is the way to do this, or is there another standard way of writing web applications using Java?

    Any advice appreciated.

    Thanks.


Comments

  • Moderators, Science, Health & Environment Moderators Posts: 10,088 Mod ✭✭✭✭marco_polo


    To learn the basics of how Web applications work and interact with the web container it is better to start with a mixture of servlets and JSP.

    After that there is a mind boggling array of Web UI frameworks to choose from like Structs, Tapestry, Spring MVC, Java Server Faces and so one. Which all do pretty much the same thing in ways sufficently different to confuse anyone. (Which is why I try to avoid frontend development like the plague :D)


  • Registered Users, Registered Users 2 Posts: 1,821 ✭✭✭Skud


    http://www.coreservlets.com/ will give you a better idea of things


  • Registered Users, Registered Users 2 Posts: 7,740 ✭✭✭mneylon


    Keep a close eye on memory usage.


  • Registered Users, Registered Users 2 Posts: 569 ✭✭✭none


    I don't particular like JSP, neither do I think they're essential for Java Web development but they can be a good starting point if you know HTML. If you know XML, it's even better as you can seamlessly transition to Tag Libraries. But if you're OK with programming rather than markup, I'd recommend familiarizing with Servlets first as this is the engine of most Web apps built in Java. And to that matter, JSP is just a Servlet inside out.


Advertisement