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.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
i'm a beginner programmer and i want update jetspeed-1.5 library to jetspeed-2.x .
I have already consulted http://portals.apache.org/jetspeed-2/j1-migration.html but i haven't an idea how to migrate.
The link provides the guidelines for migration because there are currently no migration tools. The programming API is completely changed. There are also new concepts introduced by the portlet standard. Your best bet would be follow the guidelines to migrate application from Jetspeed 1.x to Jetspeed 2.
As recommended in the guideline, the best place to get started is to create your own custom portal. This process is defined online at Apache. The Jetspeed Tutorial will take you through the initial steps of setting up your own (custom) Jetspeed portal, including setting up XML seed data, PSML, custom decorations and portlet applications.
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 3 years ago.
Improve this question
Hi am java developer with decade of experience with java/j2ee development, I got a chance from my organisation to do course and certification in bluemix or softlayer , and am confused what to choose. Any suggestions guys
This is really up to what you want to do and what you are comfortable with. SoftLayer is an Infrastructure as a Service Provider. This means that you as the customer are responsible for the Operating System updates and configuration, Middleware, and applications and services that you want to use.
If you would rather focus on just the code and don't really need to tweak the underlying OS or software stack than I would say Bluemix is the way to go as it is really more focused on Developers.
Really though it comes down to what you ultimately want to do with the platforms.
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
Working on this desktop application, every thing is going great. Had some troubles her and there, but fixed every single on of them.
The only problem is that my app look ugly, that is what my boss thinking.
Done some research found javaFX but a lot of forums calling it dead or dying
is true ??
And if not any one has a good tutorial on it
JAVAFX
I liked it a lot, but I do fear they came a bit late to the show. It is also relative complex (but nicer than swing, I find) compared to web frontend frameworks
On the last devoxx conference, Oracle profiled javaFX as a platform for mobile. Maybe it has a chance there.
For tutorials: just google....
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 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