Use this tag for questions relating specifically to Java Enterprise Edition 6.

learn more… | top users | synonyms (5)

2
votes
2answers
28 views

Testing with CDI, mocking a bean

I am wondering how i am doing tests with CDI. and mocking classes during injection. if i have the class: @Named @RequestScoped public class ItemProcessor { @Inject private ItemDao itemDao; ...
0
votes
1answer
10 views

Glassfish FileNotFoundException on First Load

I've created a simple login test setup using form-based authentication (using JSF). I have both a login.jsf page and an error.jsf page to redirect to on login failure. Now, in the tutorial I'm ...
1
vote
2answers
22 views

EJB 3.1 Generic DAO

I am trying to implement a Generic DAO to use in my project. The code I have implemented thus far is the following: Base DAO public abstract class BaseDAO<T> { private Class<T> ...
0
votes
0answers
31 views

ejb lookup issue | Java

I have an ear which contains ejb-jar(lets call it A.jar) and there is another ejb-jar(lets call it B.jar) deployed on the server. server | | |---B.jar | |---ear | | | | | |--A.jar | | ...
0
votes
1answer
12 views

Pentaho kettle engine is breaking the jboss7.1.3 logging

We're currently developing a project in javaee6 we migrated from seam2.3. And we have a dependency on kettle-engine. What I found was kettle-engine is causing the jboss logging to break down, I mean ...
2
votes
2answers
36 views

EclipseLink does not work on Netbeans, is this normal?

It'll be weeks that I'm stuck with EclipseLink. I can not persist an object in my database. I use netbeans 7.3. I encountered this problem when I started designing a web application. What follows is ...
0
votes
0answers
12 views

Sample maven pom for the following: java ee6, mysql, hibernate, jboss7?

I apologize if this is so basic, but I in all earnestness can not find a sample pom.xml that will get me up and running starting a java ee 6 application. I need to use the following for my app: ...
0
votes
1answer
58 views

A simple hello world program in EJB3

I'm new to EJB. I am using Netbeans 7.3 to create a simple hello world application. I've tried and tested the code but I couldn't figure out where I go wrong. The sayHello method does not print. ...
0
votes
1answer
37 views

Cannot inject EJB specified in applicationcontext.xml in jboss 7

I'm trying to migrate my Java EE application from jboss 5.1 to jboss 7.1 and getting a deployment error. My EAR has 2 EJB modules and 1 WAR module. both EJB modules gets deployed without any issue. ...
1
vote
1answer
28 views

Is it harmful to inject en EJB into a viewscoped Bean?

In my web application I have a presentation Layer consisting of several jsf-viewscoped and some requestscoped beans. Normally I only want to have presentation logic in these, so whenever there's a ...
1
vote
2answers
53 views

Which Primeface component to use?

I have a requirement where I have to display & enter 24 hour values for a particular job. For a particular business there could be 100's of jobs. So basically 100 rows with 24 input fields. I ...
3
votes
1answer
44 views

Replacing Seam with jee6 in conversation

A project I'm working on is going to upgrade from jee5/seam to jee6, where "those who descide" think it is a good idea to drop seam since most of its features have been incorporated into jee6. But I ...
0
votes
0answers
35 views

JPA entity manager from Datasource during runtime

I'm wondering if there is possibility to create EntityManager from defined datasource in AS during runtime via JNDI lookup. Imagine that administrator configures a new datasource within the AS (TomEE, ...
2
votes
0answers
12 views

Connect to a running JBoss AS7 instance for test purposes

I already have a integration-test phase, when I ran the selenium tests. I also want to run some unit tests in this phase, because the app is too much complex and have a lot of dependencies between his ...
0
votes
0answers
33 views

Passing parameter in EL action doesn't work with RequestScoped bean

Edit: using JSF scopes now and JSF managedbean instead of CDI as it doesn't work with CDI beans regardless of RequestScoped, ConversationScoped or SessionScoped. I'm trying to pass a parameter to a ...
0
votes
0answers
40 views

CDI event is always null

CDI Event is always null I get the below exception. I am wondering whether we can use CDI in general static methods. Does this class should be managed bean, in order to make the CDI event work? ...
0
votes
1answer
43 views

How can a singleton Java EE bean obtain a reference to itself?

I have a singleton bean for which the @PostConstruct method needs to call an @Asynchronous method within itself. It cannot do so directly using this because that makes the call synchronous. I cannot ...
0
votes
1answer
35 views

Cannot Cancel @Asynchronous call to EJB

What am I doing wrong in this simplest of examples? (Glassfish 4.0-b87 + Eclipse Kepler m6) Myself.java package com.example.cancelbug; import java.util.concurrent.ExecutionException; import ...
0
votes
0answers
12 views

WAS 8.0 Federated Repo & Servlet Spec 3.0 Security authentication of password digest

I'm developing a Registration Confirmation feature for a site. A user successfully registers on a registration page, an email is subsequently sent to the user's email address with a hyperlink, and ...
1
vote
2answers
38 views

Use entity manager in CDI extension

I want to write a CDI extension which loads some entities from database (which are in fact groovy scripts that implement a certain interface) and provide them as beans, so that it is possible to get ...
0
votes
0answers
9 views

Using JavaCompiler with Classpath referencing jars within ear

I am working on a project in which an enterprise archive (ear) deployed on a JBoss server needs to compile (and run) a class dynamically. I am using the JavaCompiler class to do this - the ...
1
vote
1answer
31 views

spring data like functionality for JEE6

I have experience building applications on the Spring Framework primarily. I was wondering if there was anything similar to the Spring Data API (to support a Data Access Layer) in the JEE6 space? ...
0
votes
1answer
35 views

How to Merge Two Dates in EJB JPA

I am try to Merge Two Dates, Current Date and Another Date in EJB With the help of JPA it's my class UserBean in this class i am prepare one method setExpireDate. This Method are use for merge two ...
0
votes
0answers
10 views

Two sources for a custom event with static methods in the source event

I have a custom event named "Trama" and two different classes that can fire it. But I don't like the classes which fire this event extends from "TramaObservable" (the class where I add the listeners). ...
0
votes
2answers
31 views

How do i use ViewAccsessScope beans when testing in Arquillian?

When i use @ViewAccsessScoped beans from CODI i get the following error, when using Arquillian for testing my beans. org.jboss.arquillian.test.spi.ArquillianProxyException: ...
-1
votes
0answers
20 views

It's related to JBOSS [closed]

I have an application made on JAVAEE uses JSF framework,when i deploy it on JBOSS 4.2.2 it works absolutely fine .but when i deploy it on JBOSS server 7.1.1 it gives me an error that is 14:26:16,652 ...
0
votes
0answers
12 views

Changes are reflecting in the code after running maven command. not directly in eclipse project

I have a maven project. I checkout a code from SVN in eclipse. Now what happen when i do any changes in the code, and try to debug the code, then no change reflect. Suppose i add a line in the code ...
0
votes
1answer
35 views

Glassfish v3 blocks suddenly and runs out of max-threads

Can s.b. tell me what can cause this: Server doesn't do anything anymore: server.network.http-listener-1.thread-pool.currentthreadcount-count = 500 ...
1
vote
0answers
41 views

@RolesAllowed and web-tier in Java EE 6.0

I have a web application with a set of security constraints. Web app calls ejb modules annotated with @RolesAllowed and everything's fine - once authorized, user's credentials being passed to ejb and ...
1
vote
0answers
13 views

Stateful Session Bean forget values

With Java EE I need to use a stateful session Bean. @Stateful @TransactionManagement(TransactionManagementType.BEAN) public class FacadeExercice extends AbstractFacade<EntityBeanExercice> ...
1
vote
1answer
121 views

Spring Security:redirection to a specific page based on roles in JSF

I work with JSF and Spring Security. I use a custom login page. I have two roles : Administrator and User. My question is how to redirect to different pages for different roles. For example if the ...
0
votes
1answer
50 views

Spring + Hibernate confuguration

I am trying to integrate Spring and Hibernate but when I run the code and submit my for then it throws this exception org.springframework.dao.InvalidDataAccessResourceUsageException: could not insert: ...
1
vote
1answer
30 views

CDI Producer(s) Different Versions of same class

I have a JEE6 simple producer class that produces a SimpleDateFromat object: public class myProducer { @Produces public SimpleDateFormat produceASimpleDateFormat(final InjectionPoint ...
0
votes
2answers
78 views

In Jersey, differences between returning Response and Bean or Collection of Beans

I am working on building a REST api. My question is, when using Jersey, what are the differences between my services building and returning a Response object or returning the the bean or collection. I ...
1
vote
1answer
36 views

How to find a ininite loop in glassfishv3

I have s.t. like a infinite loop some where in the code. That place is somehow not called often. So after a couple of hours one of the cpu's on the linux machine start's running at 100% then after a ...
0
votes
0answers
53 views

Jersey 1.3 + GlassFish 3.1 with pagination (next, prev, self), build ok, run ok but no results in browser

I'm currently following the old tutorial here about how to make REST java web services with Jersey and including hyperlinking (next, prev and self URI). I tried to passed it to Java EE 6 instead of ...
0
votes
1answer
42 views

Cannot use dependency jboss-javaee-6.0 in my Maven project

I have set up a maven project with JBoss 7.1.1 and I want to use JavaEE libraries. In the root pom.xml I have set: <repositories> <repository> <id>jboss</id> ...
0
votes
0answers
26 views

PimeFaces components causing errors in JSFUnit tests

i am writing JSFUnit tests for an Java ear based project. I am using cargo to deploy to an existing Jboss7.1.* Server. The tests run smoothly on some pages but then the pages that have certain ...
0
votes
1answer
44 views

How do I inject a JMS resource in a JAX-RS REST Web Service?

Using GlassFish 3.1.2.1, I have configured a JMS connection factory and a queue, which can be injected in JavaServer Faces managed beans using the @Resource annotation. However when I try to use ...
0
votes
1answer
33 views

OpenJPA - How to map View to Entity

I'm using WAS 8.0.0.5, which means I'm using OpenJPA 2.1.2-SNAPSHOT. I'm using the Criteria Query API and Canonical Metamodels. I need to access an Oracle View. The View has 1 column named GUID, ...
1
vote
1answer
45 views

Static utility methods to CDI (Weld JEE6)

I have a simple old style static methods in a utility class. I am struggling to "CDI" it due to the paramterised objects required each time..any help appreciated on how best to approach this? i.e. i ...
0
votes
1answer
174 views

loading events from a database into a calendar primefaces

i'm having a trouble in loading some dates into a calendar, using the "schedule" component in primefaces. Here is what my client.xhtml look like : <html xmlns="http://www.w3.org/1999/xhtml" ...
0
votes
1answer
41 views

NPE with @Inject in WAR from a JPA utility jar

Please bare with me, I'm new to JEE6... env: JBoss 7.1.1, jdk 1.7, WELD module upgraded to 1.1.10(just in case) I have a JPA project that I am adding to the WEB-INF\lib directory. It contains my ...
0
votes
0answers
26 views

How exactly use the FilterChaining?

Please someone tell me correctly How to use Filter Chaining I have searched many blogs in stackoverflow and other but still it is not clear. I have add complete filter chaining process in my ...
0
votes
0answers
49 views

Call to JPA (OpenJPA) within remote EJB fails the first time after deploy of application

I'm having a strange problem in our EJBs that are running on a Glassfish 3.1 using OpenJPA. Firste there's our Enterprise-Application 'businessBeans' that handles all the JPA/Entity-Stuff. It offers ...
2
votes
0answers
31 views

JBoss can send/receive CDI beans as parameter in remote EJB? [duplicate]

I have two applications that communicate with each other via EJB. And when I try to call a remote EJB passing in parameters a injected value (cdi weld) throws a ClassNotFoundException in my bean ...
0
votes
1answer
47 views

Custom Annotation vs using @Named in JEE6

Is there any difference between these two alternatives ... can they both be used interchangeably? (A) Creating a custom annotation so @Inject can be used instead of @PersistenceContext within a DAO, ...
2
votes
2answers
156 views

Which Java framework should i learn after core Java? [closed]

I know this question has been asked before in the past, but since the situation has changed, i feel the need for an updated opinion. I am looking for an entry level position as a Java developer and ...
0
votes
1answer
38 views

How can I implement a job queue with a greedy-worker-pool in Java EE 6 in a correct way?

I'm looking for a correct way, to do the following in Java EE 6, if possible with vanilla Java EE 6 only. I want to put a job in a job queue and have a fixed pool of worker objects, which should pull ...
0
votes
1answer
36 views

How to work with new Entity Object without setting Id before persisting?

When I choose "new price" from the p:selectOneMenu I get a validation error "value is not valid". This stops when I set an id for the new price in bugBean.generateNewPrice() manually. Even an ...

1 2 3 4 5 27