Tagged Questions

Java Enterprise Edition (Java EE) is a specification defining a collection of Java-based technologies and how they interoperate. Java EE specifies server and client architectures and uses profiles to define technology sets targeted at specific classes of applications.

learn more… | top users | synonyms (3)

131
votes
36answers
19k views

Questions every good Java/J2EE Developer should be able to answer? [closed]

I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question, and so in the same spirit, I am asking this ...
120
votes
15answers
12k views

How to avoid Java Code in JSP-Files?

I'm new to Java EE and I know that something like the following three lines <%= x+1 %> <%= request.getParameter("name") %> <%! counter++; %> is an oldschool way of coding and in ...
48
votes
4answers
15k views

What is the difference between JSF, Servlet and JSP?

Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
46
votes
9answers
11k views

Would you, at present date, use JBoss or Glassfish (or another) as Java EE server for a new project?

If you started a new Java EE project today which is to be finished in about a year, which application server would you choose and why? Part of your answer should include your arguments for your ...
42
votes
18answers
16k views

Java EE 6 vs. Spring 3 stack [closed]

I'm starting a new project now. I have to choose technologies. I need something light, so no EJB or Seam. On the other hand I need JPA (Hibernate or alternative) and JSF with IceFaces. Do you think ...
40
votes
12answers
27k views

Servlet for serving static content

I deploy a webapp on two different containers (Tomcat and Jetty), but their default servlets for serving the static content have a different way of handling the URL structure I want to use (details). ...
33
votes
11answers
10k views

Hibernate, iBatis, JEE or other Java ORM tool

We're in the process of planning a large, enterprise application. We're focusing our efforts on evaluating hibernate after experiencing the pains of J2EE. It looks like the new JEE API is simpler. ...
33
votes
5answers
5k views

Describe the architecture you use for Java web applications?

Let's share Java based web application architectures! There are lots of different architectures for web applications which are to be implemented using Java. The answers to this question may serve as ...
32
votes
10answers
65k views

How to decompile a whole Jar file?

Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class
31
votes
8answers
6k views

what is j2ee/jee?

OK stupid question but... I realize that literally it translates to java 2 enterprise edition. What I'm asking is what does this really mean? when a company requires j2ee experience what are they ...
28
votes
31answers
48k views

Senior Java EE interview questions [closed]

What are the best questions to ask when running a technical interview for a senior level Java EE developer?
27
votes
8answers
734 views

How do you update your Java EE app in production?

My name is Jevgeni Kabanov and I’m a computer scientist/hackerpreneur. Recently I’ve been trying to figure out what is happening in the world of Java EE production deployment and frankly it seems ...
26
votes
8answers
9k views

Why spawning threads in J2EE container is discouraged?

One of the first things I've learned about J2EE development is that I shouldn't spawn my own threads inside a J2EE container. But when I come to think about it, I don't know the reason. Can you ...
24
votes
1answer
866 views

Does a JCA 1.6 ResourceAdapter need a ManagedConnectionFactory?

I have written a JCA resource adapter before. However, now I find myself in a position of having to write one solely to get access to the BootstrapContext and its associated WorkManager, and ...
24
votes
8answers
2k views

Fowler's “Patterns of Enterprise Application Architecture” still relevant?

I'm thinking of buying Martin Fowler's "Patterns of Enterprise Application Architecture". From what I can see it seems like a great book, it an architectural book with bias towards enterprise Java -- ...
23
votes
4answers
1k views

Is anyone using SpringSource tc server as a Tomcat replacement?

It looks like SpringSource has just released a GA version of their tc Server application server. It sounds from their description like it is a drop-in replacement for Apache Tomcat, with better ...
23
votes
8answers
24k views

Access Enum value using EL with JSTL

I have an Enum called Status defined as such: public enum Status { VALID("valid"), OLD("old"); private final String val; Status(String val) { this.val = val; } public ...
22
votes
9answers
17k views

Maven dependency for Servlet 3.0 API?

How can I tell Maven 2 to load the Servlet 3.0 API? I tried: <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> ...
22
votes
15answers
5k views

Is Drupal ready for the enterprise?

Is anyone out there using Drupal for large scale, business critical enterprise applications? Does Drupal's lack of database transaction support dissuade potential users? Are there any other ...
20
votes
3answers
10k views

Why does JPA have a @Transient annotation?

Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?
20
votes
4answers
12k views

.war vs .ear file

What is the difference between a .war and .ear file?
20
votes
13answers
6k views

What should I learn first, Spring or Hibernate?

I've just started learning Struts and I'm trying to be marketable for a good job as a Java programmer. My next decision would be choosing which to learn next, Spring or Hibernate? Also do you guys ...
19
votes
4answers
4k views

Are @ManagedBean's obsolete in JavaEE6 - because of @Named in CDI/Weld?

Because of CDI (and its implementation Weld), every POJO in JEE6 can be annotated with @Named, which makes the POJO accessible to the view. Does that mean that ManagedBeans are completely obsolete ...
19
votes
8answers
5k views

What to learn for making Java web applications in Java EE 6?

My goal is to make web applications! I finished reading the Books "Headfirst - Java" and "Headfirst - Servlets and JSP". Because this topic (web applications) is so big and complicated, I would like ...
19
votes
23answers
19k views

What are the advantages of using J2EE over ASP.NET?

We are currently planning to launch a couple of internal web projects in the future. Our company's dev teams are mostly experienced in J2EE and have worked with it for years. Today, we have the choice ...
19
votes
4answers
29k views

Can anyone explain servlet mapping?

I'm trying to write a web application using SpringMVC. Normally I'd just map some made-up file extension to Spring's front controller and live happily, but this time I'm going for REST-like URLs, ...
18
votes
1answer
1k views

Difference between JSP EL, JSF EL and Unified EL

HI, I would like to know the detailed difference between the Expression Languages(EL). There is JSP EL, JSF EL and Unified EL. I would like to know the history behind the EL and what is the latest ...
18
votes
9answers
1k views

The best tools money can buy

In my company (which scored 3/12 on the Joel Test) we have access to free software only, so I was wondering what, in the Java EE world, are the best tools money can buy? For instance, I was painfully ...
18
votes
6answers
23k views

Spring - How to call a method after bean initialization is complete?

I have a use case where I need to call a (non-static) method in the bean only-once at the ApplicationContext load up. Is it ok, if I use MethodInvokingFactoryBean for this? Or we have a some better ...
18
votes
5answers
9k views

Any way to share session state between different applications in tomcat?

We want to split a working application in two different wars in order to be able to update one app without affecting the other. Each webapp will have different ui, different users and different deploy ...
17
votes
1answer
2k views

Where's the official JSP tutorial

I now have to remember how to create custom tag libraries, and since I'm using servlet 3.0 I decided to see the official JavaEE6 tutorial. Much to my surprise there is nothing about JSP in the JavaEE6 ...
17
votes
3answers
614 views

Exploitable Java functions

This question is similar to Exploitable PHP Functions. Tainted data comes from the user, or more specifically an attacker. When a tainted variable reaches a sink function, then you have a ...
17
votes
10answers
1k views

Why should I pass Boolean as a parameter instead of “boolean”?

A co-worker asked me to change a signature from using a primitive "boolean" to using a classed "Boolean". He didn't offer a very good explanation why? Have any of you heard of this and can any of ...
17
votes
14answers
2k views

How to improve productivity when developing JEE based web applications

I'd like to know how you address the seemingly low productivity of JEE-based web application development compared to other technology stacks (Seaside, Ruby on Rails, etc). The constraints are: The ...
17
votes
5answers
1k views

Most important problem solved by EJB 3?

The scenario You have developed a webapp using EJBs version 3. The system is deployed, delivered and is used by the customer. If you would have to rewrite the system from scratch, would you use ...
17
votes
15answers
17k views

Can't add server to a moved workspace

I have this workspace downloaded off the web and I try running it on a tomcat server from a fresh installation of Eclipse Ganymede. This particular project came with its own workspace. When I select ...
16
votes
6answers
373 views

How best to modernize the 2002-era J2EE app?

I have this friend.... I have this friend who works on a java ee application (j2ee) application started in the early 2000's. Currently they add a feature here and there, but have a large codebase. ...
16
votes
6answers
5k views

Why do we need separate Remote and Local interfaces for EJB 3.0 session beans

I was wondering why do we need separate Remote and Local intefaces for EJB 3.0 Session beans. I guess most of the time they would both be defining the same contract. Why cant I have a common interface ...
16
votes
5answers
3k views

Java for C# developers

What is the fastest-track set of resources for a C# developer wishing to hit the ground running in an enterprise-class Java team?
15
votes
2answers
5k views

What is the difference between Eclipse for Java (EE) Developers and Eclipse Classic?

What is the difference between Eclipse for Java (EE) Developers and Eclipse Classic? Both are marked as version 3.6. Which one should I use?
15
votes
2answers
17k views

JSF - get managed bean by name

I'm trying to write a custom servlet (for AJAX/JSON) in which I would like to reference my @ManagedBeans by name. I'm hoping to map: http://host/app/myBean/myProperty to: ...
15
votes
5answers
1k views

What do you monitor with JMX in your production java application?

This question is not about how JMX works or what JMX does. This question is about applications of JMX in standard application server environment in production. It is not for specific server either. ...
15
votes
11answers
1k views

Why is Java frequently used for enterprise applications?

As a Java newbie I'm wondering: of all the languages in the world, why is Java frequently used for enterprise applications? What makes it that way compared to the other languages? Will it continue to ...
15
votes
12answers
18k views

How to improve Netbeans performance?

Is there a real way to get Netbeans to load and work faster? It is too slow and gets worse when you have been coding for some time. It eats all my RAM. I am on a Windows machine, specifically ...
15
votes
7answers
6k views

EJB3 Transaction Propagation

I have a stateless bean something like: @Stateless public class MyStatelessBean implements MyStatelessLocal, MyStatelessRemote { @PersistenceContext(unitName="myPC") private EntityManager ...
14
votes
3answers
830 views

Java EE Fundamentals

I've read the wikipedia articles. I've browsed the Oracle tutorials. I've Googled, binged and Yahooed, and still, I am choking on the most basic fundamentals of Java EE (5+). Must all Java EE ...
14
votes
6answers
392 views

Audit Java: system to detect exceptions thrown / caught (aop?)

Due to checked exceptions, we can have some problems in production having all exceptions caught in the right place and logged correctly. I wonder if there is some opensource tool to help with ...
14
votes
3answers
2k views

Why use @PostConstruct?

In a managed bean, @PostConstruct is called after the regular Java object constructor. Why would I use @PostConstruct to initialize by bean, instead of the regular constructor itself?
14
votes
6answers
1k views

JEE6: Switching to CDI - Best resources

I have a small yet complete JEE 6 application at hand. The traditional annotations are being used: @Resource, @EJB, @Singleton, @PostConstruct, @PreDestroy, @PersistenceContext, @ManagedBean, ...
14
votes
7answers
4k views

How can I map a “root” Servlet so that other scripts are still runnable?

I'm trying to build a Servlet that calls a JSP page similar to the following: public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException, ServletException { ...

1 2 3 4 5 132