Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I have read the following about JSP this
But there is no discussion about servlet technology.
My Question is "Are servlets being used today, or are they deprecated ?"
Actually I need a update . :)
It is not deprecated. They are still releasing new features on the latest Servlet (like async Servlet).
And many of the Java web frameworks are building on top the the Servlet technology.
But it might be right that less people are using it directly since it is so easy to use one of the Java web frameworks (which built on top on Servlet).
Yes, Servlet(s) continue to be used. Even if you never write one, every JSP (per the linked Wikipedia article) is one.
JSPs are translated into servlets at runtime
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am learning how to use JSTL in my application.
When i was ready download it from Internet, I found there are two kinds of JSTL.
The first one is from http://tomcat.apache.org/taglibs.html, another is https://jstl.java.net/. Though files' names are different, it seems they both works.
What's the different between them? Which one should I use?
Like as everything else in Java EE, JSTL is an abstract API. The concrete code is provided by the implementors. Oracle is one and Apache is another one.
Which one to choose is up to you.
See also:
Our JSTL wiki page
What exactly is Java EE?
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I want to develop an ERP application. What is the best framework to use. Am good with Codeigniter and ready to learn a better framework. Plus, the application will be used in a a large organization. I have read many forums but can't end up with a concrete reason why I'd prefer one over the others.Is there an alternative programming language which is not necessarily web based? Any idea will be highly appreciated.
try laravel first as it is modern and has a lot of support. Go on the irc channel and it is a great place. zend will take a lot longer to build and plan.
if you want a proof of concept, you can get it up in a few days in laravel. then you can decide on where you want to take it from there.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I worked on GWT in past with normal HTML editor. Now i am trying to work with bootstrap. but whether is it possible to combine GWT knowledge with boot strap or else i should go through JSP & boot strap? which combination is better to make my work easy?
As you say , you have knowledge in GWT it can be very well used to integrate it with Bootstrap.
AFAIK, there are two librarys for Twitter Bootstrap integration in GWT. There is GWT-Bootstrap and GwtBootstrap3. And this answer GWT-Bootstrap vs. GwtBootstrap3 would help you choose the one which you need.
And here is live demo for gwtbootstrap3. Have a look at their CSS and js components integrated with bootstrap.
The second part is jsp + bootstrap , choosing the stack is truly based on your requirements and exposure to the technologies. I have worked jsp and bootstrap , jsp is merely an html with some additional options for dyanmic content. so it wont very tough to learn.
See also:
Why is gwt-bootstrap necessary?
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
well I studied java language and I'm pretty sure I'm at a good point and I would move up to the next level beginning to build a web app. So I downloaded and installed jboss but I think although is a complete framework it's very complicated.so I ask you where couid I start?which could the beginning point to understand something and move on?
JBoss is only one of several web application containers available in the Java ecosystem. If I were you I'd start by looking at how to develop web components using servlets and jsp. Basically the things included in the Oracle Web Component Developer Certification. While it's certainly not necessary to get a certification it is good to have a grasp of the material covered. There are plenty of books and online resources that cover these topics.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
It is a good choice to use JSP with Wicket at long term? There is also another tool that allows to work with Wicket?
Thanks
This is a strange question. Wicket does not work with JSPs. JSPs work with action-oriented web frameworks (e.g. Struts or Spring MVC) or pure servlet development, Wicket is a component oriented framework which works with html and java only. There is no logic in templates in wicket (and hence no suport for JSPs). In my opinion that is the key feature of wicket.