java-ee-6

How to run agregate function like Sum on two columsn in JPA and display there results?

Hi, I am new to JPA.So my question would sould so simple to some. :) Below is the Simple Query in SQL which i would like to convert to JPA.I already have the an Entity Class as TimeEnt SELECT SUM (TimeEntryActualHours) As UnBilledHrs,SUM (TimeEntryAmount) As UnbilledAmount From TimeEnt Where MatterID = 200; Thanks a lot for you hel...

Slow JPA startup

I created the JPA 2.0 entity classes for our whole database (~200 tables), and now each time I rebuild my application and start it for the first time I get these messages: INFO: <entity_classname> actually got transformed INFO: <entity_otherclassname> actually got transformed ... And the output of these (info) messages in Glassfish is...

JSF 2: outputLink whose parameters depend on user input

Here is my problem: I need to create a (seemingly) simple front-end for a report. The user enters a bunch of numbers, seperated by whitespace or commas, which are the IDs that will be brought up in a report. I use a converter to change this from a string to a List, and then from there back into a form where the numbers are delimited ...

Accessing a EJB from a POJO

Is it possible to access an EJB from a POJO? I have tried the @EJB MyClass obj but that does not work. ...

Java Application with Multiple JAAS Security Realms

Hi, I was wondering if it was possible to have a Java EE application with multiple JAAS security realms. I'm currently developing an application in which some users need to be authenticated with data stored in a database, while other users need to be authenticated through an LDAP bind. So I created 2 security realms in glassfish 3.1...

<h:dataTable> problem with present datas on JSF page

I have small problem with view datas in h:dataTable item. I have native query which is working properly in database and in java: SELECT SUM(price_list.first_class_price), SUM(price_list.second_class_price) FROM price_list, connections WHERE connections.id = price_list.id_connect GROUP BY connections.source; The method in EJB retur...

Starting a project in JEE.

I am thinking of using JEE for my college project. Previously, I have used C# for a desktop application. I am new to Java and JEE. My question is this. What do I have to consider before starting a project in JEE? I am thinking about using NetBeans as my IDE. Is this a good idea? I can choose either MS Sql Server or Oracle as my ba...

"Unable to convert ejbRef for ejb" on CDI (Weld) injection of @Stateless EJB into @SessionScoped JSF2 bean in Glassfish

[UPDATE: After discussion on the Glassfish forums/ML at http://forums.java.net/jive/thread.jspa?messageID=480532 a bug was filed against Glassfish https://glassfish.dev.java.net/issues/show_bug.cgi?id=13040 for this issue.] I'm trying to inject a local no-interface view of a @Stateless EJB into a JSF2 @Named @javax.enterprise.context.Se...

Performance in JavaEE 6 Applications (Glassfish v3) - Logging, DI, Database-Operations, EJBs, Managed Beans

The important technologies i use are: Glassfish v3, JSF 2.0, JPA 2.0, EclipseLink 2.0.2, log4j 1.2.16, commons-logging 1.1.1. My problem is that some parts of the application are pretty slow. I analysed this with the netbeans 6.8 Profiling capabilities. I. Logging - i use log4j and apache commons logging to generate logs in a logging ...

Maven Embedded Glassfish Plugin - not starting

I can't seem to get a web application running with the embedded glassfish plugin: Plugin Configuration: <plugin> <groupId>org.glassfish</groupId> <artifactId>maven-embedded-glassfish-plugin</artifactId> <version>${glassfish.version}</version> <configuration> ...

CDI - Observing Container Events

Hi all, I am trying to observe both the startup and shutdown events for a CDI web application. I have an ApplicationScoped bean that listens for those events: @ApplicationScoped public class PrettyfacesStartupObserver { private static final Log LOGGER = LogFactory.getLog(PrettyfacesStartupObserver.class); public PrettyfacesSt...

GlassFish, CDI and Constructor Injection

Is constructor injection supported in GlassFish 3.1's implementation of CDI for managed beans? I have a @Singleton EJB into which I want to inject another managed bean (contained in the same EJB module) using constructor injection. Field injection does work. But with constructor injection I get a NullPointerException from AbstractSinglet...

Embedded Glassfish - EJB 3.1 - @Schedule

Hi all, I am new to Java EE 6 and working on getting a number of demo applications running finally. I have an application scoped bean that has a @Schedule annotation on it that should in theory trigger that method every minute. However, that method doesn't appear to ever be invoked. It simply writes to the logs that it was called. C...

javax.ejb.ScheduleExpression missing documentation

From the rather sparse javadocs: See EJB specification for the full timer expression syntax. There's no link, and no further clue where to find this "full syntax". Does anybody know what they're talking about? ...

How to inject one EJB 3.1 into another EJB

I'm developping simple app where one EJB should be injected into another. I'm developping in IDEA Jetbrains IDE. But after i make @EJB annotation in Ejb local statless class my IDE highlight it with error: EJB '' with component interface 'ApplicationController' not found. Can anyone tell Why? ...

JPA Glassfish Database Update Issue

Hi, I have an application deployed on Glassfish v3.0.1 which reads events from a table in my database. Once ready it marks them as processed. I am getting a strange error I can't explain when trying to call the method which does the update. @Override @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW) public void markEventAsPr...

EJB3 + JSF2; Stateless like a Statefull

I've a stateless session bean in an ejb container. If I invoke it from a jsf2 form it works fine, but if I recall the form again it shows me the same data I've inserted before. It happens even if I close and reopen the browser. I must wait several minutes until the form shows empty fields. The stateless session bean is not recreated for ...

CDI - Event Observers

Hi all, I have event observers which all observe the same event, so I have an abstract superclass which observes that event and then the subclass overrides / implements the specific functionality. The problem with this is that it doesn't observe the event unless I put the event observer method in the subclass (which defeats the purpose...

How JEE6 makes the link between Observer and Observee (Observer Pattern)

Hello, I've read some blog articles about Observer pattern implementation on JEE6 and something bother me... I can't find any information atm so i ask there... I've found the following exemples: @Stateless [...] public class ParisJugService { @Inject Event event; public void helloParis(){ System.out.println("Hello P...

Learning resource for Configuring Hibernate JPA 2.0 on Glassfish server

Hi guys, I am trying to create a new JEE project using hibernate and JPA 2.0 on the glass fish server.Can you guys provide me some resources to configure the above so that they work seemlessly. I have tried using netbeans and generated the persistence unit by using the hibernate provider,but i end up getting this error javax.persi...