2
votes
0answers
15 views

JSF2 with EJB3 and JPA - how best to package

I'm trying to teach myself a bit about EJB3 and JPA by creating some functionality that uses JSF2 as a front end, stateless EJB3 session beans to handle transactions and JPA to persist entities. ...
0
votes
0answers
26 views

jpa query get entity with their all childrens

I have got entity something like that: public class Group{ @Id private int id; @JoinColumn(name = "PARENT_ID", referencedColumnName = "ID") @ManyToOne private Group parentid; ...
4
votes
1answer
255 views

JPA composite primary key with null value

I have a table containing customer data in an oracle database. Here is a simplified definition: CUSTOMER (CUSTOMER_ID NUMBER NOT NULL, SOURCE_SYSTEM VARCHAR2(30), FULL_NAME ...
0
votes
0answers
31 views

How to make an i18n-query with fallback language using the CriteriaBuilder?

I have 3 MySQL tables: LANGUAGE -id -name INDUSTRY -id INDUSTRY_DETAIL -id -industry_id -language_id -name They contain the following data: LANGUAGE ...
0
votes
0answers
44 views

How Can I get the Slave status (all values eg: Master_Host, Master_User, Master_Log_File etc…) of MySQL replication using EJB?

I'm working in EJB 3 with JPA 2.0. The following is the sample output of mysql show slave status\G; Slave_IO_State: Waiting for master to send event Master_Host: localhost ...
0
votes
1answer
175 views

Possibility to use JPA without EJB inside WebSphere module

I have a WebSphere ESB 7.5 hosting a web service (inside a mediation module). The data from the web service should be stored to a DB. DB access should be performed via JPA. I would like to utilize ...
1
vote
1answer
137 views

Query Money/BigDecimal Datatype

I am trying to query a table for finding a MRP price. BigDecimal mrp = 5.5; Query query = em.createQuery("SELECT p FROM Product p WHERE p.mrp=:mrp"); query.set("mrp",mrp); in the above i get a ...
0
votes
1answer
252 views

Error in JPA & EJB

I'm a newbie in JPA and EJB. Tried JPA and EJB apps seperately and went fine. But got error while using them together. This is the error (log) I got while using JPA with EJB 3 (JBoss 7 AS server) in ...
0
votes
1answer
132 views

How to join on a list using JPA

Lets say you have two Entities Cats and Licks. Each has a list of the other. How do you write JPA to find one, given the id of the other. My question is this: why not make this more simple? This ...
0
votes
1answer
143 views

Architecture choice: ESB and EJB

I am building a new Java EE application (thin client), and here is the application layers: The application presentation will be with JSF2 / Spring webflow and RichFaces 4 The businees layer will be ...
0
votes
0answers
36 views

Searching unique records

I want to search unique record like below SELECT v.customer_pk FROM test.order o LEFT JOIN test.customer c ON o.customer_pk = o.pk WHERE c.name LIKE '%ABC%' GROUP BY v.customer_pk how do i do the ...
1
vote
1answer
225 views

Please help to understand the behavior of EntityManager's merge operation

Imagine simple "tree" JPA entity: public class TreeItem { @OneToMany(mappedBy = "parentItem") private List<TreeItem> childItems; @ManyToOne @JoinColumn(name = "parent_id" private ...
0
votes
2answers
1k views

Table is not creating using JPA 2.0

I am using JPA 2.0 in Netbeans. I am using entities. If my database has no table then it should create table from entities. Here is my code public class BankServlet extends HttpServlet { @EJB ...
0
votes
1answer
393 views

Java EE6/EJB3/JPA2: How to add an existing (but detached) entity to a new entity in ManyToOne?

I have problems setting existing but detached entities into a ManyToOne relation, Hibernate throws a PersistentObjectException saying: 'detached entity passed to persist: model.persons.Customer'. My ...
1
vote
1answer
325 views

How can I connect a JDBC connection pool for Selenium WebDriver test case?

I'm working on maven application. I'm using JPA and EJB. I need to connect a JDBC connection pool for Selenium-WebDriver test case. Since I want to use a separate DataBase for testing. How can I ...
1
vote
2answers
3k views

jboss can't deploy enterprise application project

I created an Enterprise application project with eclipse with 3 separated project: Test, TestEJB and TestWeb, I created Person.java, IPerson.java and PersonBean.java in TestEJB IPerson.java package ...
-1
votes
1answer
346 views

JPA LazyInitializationException?

I am using jquery for UI , Struts2 as Action , JPA for Data Access Layer. The issue I am facing is that I am getting LazyInitializationException when I am trying to retrieve values from the database . ...
3
votes
3answers
329 views

How access a @Lob field from an EJB3 extended persistence context

We're developing a project in JaveEE6, using EJB3 beans and JPA2 annotations. We have some stateful EJB3 beans that use extended persistence context in order to display the database entities to the ...
2
votes
2answers
2k views

How can I avoid the Warning “firstResult/maxResults specified with collection fetch; applying in memory!”?

I'm getting a warning in the Server log "firstResult/maxResults specified with collection fetch; applying in memory!". However everything working fine. But I don't want this warning. My code is ...
0
votes
0answers
85 views

How can I write criteria query?

I'm working on EJB3 and JPA2.0. I want to write a crieteria query for getting the records in the table. For eg. Entity name: Employees with fields name, designation, salary and Set<Bonuses> ...
0
votes
1answer
251 views

Error message when adding a new data (transaction aborded)

am using jsf 2.0 + primefaces 3.2 + EJB 2.0 + JPA 2.0 . hi everyone, when i try to affect a new student to a class the system raises an error message which is trasaction abored. my entity code : ...
2
votes
1answer
494 views

What do i get from setting this TransactionAttributeType.NOT_SUPPORTED

I happen to find examples that uses this construct though I am not sure what can I get from this? Does it means that all select statements in a stateless EJB should follow this? @Stateless public ...
0
votes
1answer
216 views

LazyInitializationException while listing objects in a JSF form

I'm working on a project using JBoss 6.1.0.Final, JSF 2.0.3, EJB3 and JPA 2 + Hibernate 3.3. A JSF page is showing a form to input data of an entity A, while it also has a list of B, C and D ...
0
votes
1answer
141 views

EntityManagerFactory per session in an application-managed

i have to change the default schema at runtime in my multi-tenant SaaS application. (Shared Db - Seperate schema). Basically every customer is gonna have their own schema (designed this way because of ...
0
votes
0answers
330 views

Class not found exception for MySql database driver com.mysql.jdbc.Driver

I am using JBoss as the container for deploying an EAR application using MySql database confifuration. while deploying the application, i am getting an error : Could not create connection; - ...
1
vote
2answers
1k views

JPA , many-to-many relation, deleting all previous relations and entering the new relations

here i am trying out many-to-many relationship in JPA, I'v created tables "tblcourse" and "tblStudent", a student can register to many courses, create table tblcourse( id integer primary key, ...
0
votes
1answer
216 views

Cannot set lastest id inserted in Entity

I have a table User and another Person, a person is an user, right ? So I have to persist the user first then get his id so I can set this id in my person entity. It's pretty simple, but I don't know ...
1
vote
2answers
298 views

JPA query exception unexpected (

Hi this is my entity StudentEntity.java, @Entity @NamedQueries({ @NamedQuery(name="totalStudentSQLQuery", query="select count(*) as MAX_STUDENT from tblstudent"), ...
2
votes
2answers
687 views

How to access EntityManager inside Entity class in EJB3

I need to execute a db query inorder to set the extra column "The order by column" in a many to many association table. so I need to access the db sequence from inside the Entity class and and select ...
1
vote
2answers
2k views

An application using EJB 3.0 and Hibernate persistence provider gives an UnknownServiceException

I am trying to create a web app using JSF and EJB 3.0. I am using plain JSF, Glassfish Server, Hibernate as my persistance provider. My database is apache derby. Here my Stateless Session bean as ...
0
votes
3answers
2k views

'no session or session was closed' with JPA 2 and EJB 3.1

I have stateless session bean with this method: @Override public List<Character> getUserCharacters(int userId) { User user = em.find(User.class, userId); if(user != null) return ...
1
vote
2answers
631 views

Postgres + EJB3 pre-allocation size error

I am having problem with sequence in postgres and jpa Caused by: javax.persistence.EntityExistsException: Exception Description: The sequence named [shp_users_seq] is setup incorrectly. Its ...
5
votes
2answers
535 views

JPA/Hibernate emits no UPDATE on commit in EJB/Seam environment

I have a Seam 3 sandbox application using JBoss 7, Hibernate as default JPA implementation and as JSF as web front end. I have the problem, that the SQL UPDATE is swallowed by default. My stateful ...
2
votes
2answers
6k views

Servlet.service() for servlet jsp threw exception java.lang.NullPointerException while calling EJB bean

While calling EJB bean on my simple jsp page I have such an error: WARNING: StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception java.lang.NullPointerException at ...
1
vote
1answer
335 views

What does the “Use Java Transaction APIs” checkbox do in Netbeans persistence.xml

In Netbeans in the persistence.xml there is a checkbox called "Use Java Transaction API" this changes the xml from: <persistence-unit name="PUNAME-PU" transaction-type="RESOURCE_LOCAL"> To: ...
1
vote
1answer
955 views

JPA2 One-to-many serialization exception

I have such a problem when migrating from Hibernate to JPA2 in new EJB project. In stateless bean i fetching a parent class instance which name is ProductType with unidirectional One-to-many ...
2
votes
1answer
344 views

EJB 3 + JPA2 = Deserialized Object with null fields

I have a JPA Annotated Object and a EJB remote interface in one jar and the EJB Stateless implementation with the Entity Manager injected deployed in a war file. My client creates a new instance of ...
1
vote
1answer
120 views

How to return result of transaction in JPA

Just a background since I am used to using JDBC since I worked on an old project. When saving into database, I always set the value to -1 for any unsuccessful insert public class StudentDao{ ...
4
votes
2answers
3k views

Better Exception Handling in JPA

I used EJB3/JPA when persisting my entities and I am happy on how it is able to manage my DB related task. My only concern is on the exception handling. My sample code when saving entity always comes ...
21
votes
1answer
12k views

Confusion: @NotNull vs @Column(nullable = false)

When they appear on a field/getter of an @Entity, what is the difference between them? (I persist the Entity through Hibernate). What framework and/or specification each one of them belongs to? ...
0
votes
2answers
2k views

How to implement EJB 3.0, JPA, Hibernate and Struts 2 in one application?

Good day, I have to use EJB 3.0, JPA, Hibernate and Struts 2 in one application, but I have no idea how to do it! Are any other MVC frameworks better integrated with EJB than Struts 2? Thank you ...
1
vote
1answer
146 views

EntityManager became NULL after a while (about 10m)

in my JavaEE 6 application (JBoss 6.0.0.Final) I have a class hierarchy outlined like this @Stateful public class UserFacade { @Inject @MyRepository private EntityManager em; } @Stateful public ...
1
vote
1answer
219 views

Strange behavior for PESSIMISTIC_WRITE?

I am new to JPA 2.0 locking, so it might be I am missing something. Using NetBeans, I tried to debug a Stateless Session Bean. I tried to switch between two threads to examine the concept: ...
0
votes
1answer
660 views

Transaction didnt rollback but committed using Hibernate JPA 2.0 and EJB3 with BMT

I have been studying about JPA 2 with hibernate on ejb3. So I made a sample class to test the functionalities. I have tried using BMT transactions but facing problem on transaction. From the sample ...
2
votes
1answer
2k views

@ManagedProperty annotated type returns null

I have this Service bean: @Stateless public class BookService { @PersistenceContext(unitName="persistentUnit") protected EntityManager entityManager; public BookModel find(Long id) { ...
1
vote
1answer
646 views

Application scoped Managed bean dying?

I have an application scoped managed bean which main purpose is to serve the rest of the application with less dynamic data such as all available languages and a few more things. ...