EJB / EE :: Bean Validation Error In JPA When Trying To Persist Entity

Aug 5, 2012

i get this error when trying to Persist a customer Entity in my web application using netbeans with the default glassfish server persistence provider eclipselink(JPA2.0)

error is

SEVERE: javax.validation.ConstraintViolationException: Bean Validation constraint(s) violated while executing Automatic Bean Validation on callback event:'prePersist'. Please refer to embedded ConstraintViolations for details.

the table that i want to write to has the following colums
id ==> primarykey auto increment not null int
name == varchar(45) not null
phone ==> varchar(19)
nationalIdNo ==>varchar(19)
balance ==> bigdecimal(6,2) not null default(0.00)

in my addNewCustomer i only need to set name, phone and nationalIdNo only this is my code

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package session;

import cart.Cart;
import entity.Customer;
import javax.ejb.Stateless;
import javax.ejb.LocalBean;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

[code].....

why am i getting this error? and how do you do a bean validation?

View Replies


ADVERTISEMENT

EJB / EE :: Avoid Persist Entity On Set Methods

Dec 9, 2014

I'm using EclipseLink, WildFly, EJB, postgresSQL and JSF.I'm trying to persist some countries and their localities.So I've:

- Two entities Countries and Localities in which I specify respective columns and relations.
- Abstract Session beans for entity classes: AbstractFacade providing basic crud methods and entity manager.
- Two concrete session bean for entity classes: CountriesFacade and LocalitiesFacade.
- A JSF managed bean named geoJSF.
- A JSF page with a form allowing to insert new country and localities.

In geoJSF I'm injecting via EJB CountriesFacade as property named cf and LocalitiesFacade as property named lf.For the actual inserting country and locality I'm using geoJSF.country and geoJSF.locality. When the form is submitted I'm simply doing:

this.cf.create(this.country);
this.locality.setCountry(this.country); //<- this throw an exception (unique constraint violation) due to the attempt to reinsert this.country
this.lf.create(this.locality);

I disabled all cascade among relations definitions.Based on what I know this.country should appear detached to entity manager so, setting relation the entity manager try to re-persist it.

View Replies View Related

Enterprise JavaBeans :: Accessing Another Bean - No Such Entity

Oct 22, 2008

I am using EJB 2.1 when i am tryinh to access another bean from one bean I am getting :

javax.ejb.ObjectNotFoundException:No such entity the full stack trace is given ...

javax.ejb.ObjectNotFoundException: No such entity!
09:06:05,795 ERROR [STDERR] at org.jboss.ejb.plugins.cmp.jdbc.JDBCFindEntityCommand.execute(JDBCFindEntityCommand.java:46)
09:06:05,795 ERROR [STDERR] at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.findEntity(JDBCStoreManager.java:591)
09:06:05,795 ERROR [STDERR]

[Code] .....

View Replies View Related

Enterprise JavaBeans :: Does Container Managed Entity Manager Is Thread-safe In Stateless Session Bean?

May 8, 2014

I read JEE6 doc and confused with : Does container managed entity manager (injected by PersistenceContext annotation) is thread-safe in stateless session bean in multiple-thread env?
 
See code below, if there are 2 requests to stateless sesion bean in 2 concurrent threads ,  is it using same Entity Manager Instance or not?
 
@Stateless(name = "HRFacade", mappedName = "HR_FACES_EJB_JPA-HRFacade-HRFacade")
public class HRFacadeBean implements HRFacade, HRFacadeLocal {
    @Resource
    SessionContext sessionContext;
   
    @PersistenceContext(unitName = "HRFacade")
    private EntityManager em;
 
[Code] .....

View Replies View Related

EJB / EE :: Entity And Mapped Superclass Throw Error - Has No Table In Database But Operation Requires It

Apr 16, 2014

I have a superclass used for all the other entity

@MappedSuperclass
public abstract class BssStandardEntityLaravel extends BssStandardEntity
implements InterfacciaBssStandardEntity, Cloneable{
private static final long serialVersionUID = 1L;
@Column(name = "created_at", nullable=true)
@Temporal(TemporalType.TIMESTAMP)
protected Date created_at = new Date();

[Code] ....

When i try to read some data with a JPA controller, this error is raised:

Persistent class "com.bss.libbssabstract.database.entity.BssStandardEntityLaravel" has no table in the database, but the operation requires it. Please check the specification of the MetaData for this class.
org.datanucleus.store.rdbms.exceptions.NoTableManagedException: Persistent class "com.bss.libbssabstract.database.entity.BssStandardEntityLaravel" has no table in the database, but the operation requires it. Please check the specification of the MetaData for this class.
at org.datanucleus.store.rdbms.RDBMSStoreManager.getDatastoreClass(RDBMSStoreManager.java:702)

[Code] ....

It requires BssStandardEntityLaravel table like a normal entity. I used the same entity package in other applications and it works perfectly. Why this error is raised?

I use jpa2.1.0 and datanucleus to enhance classes

View Replies View Related

Error Handling / Validation In GUI

Feb 10, 2014

I have a GUI that prompts the user for information. When they click 'submit', a new customer gets created from a class like so ...

Java Code:

public void actionPerformed(ActionEvent arg0) {
Customer customer = new Customer(); // New customer object
customer.name = view.getName();
customer.age = Integer.parseInt(view.getAge());
customer.ccn = view.getCCNumber(); mh_sh_highlight_all('java');
I am having difficulties validating my variables for nulls. For instance ...

Java Code:

// METHOD TO RETRIEVE TEXTBOX INPUT -- NAME
public String getName() {
String name = null;
if (jtfFirstName.getText() == null || jtfLastName.getText() == null || !jtfFirstName.getText().matches("[a-zA-Z]+") || jtfLastName.getText().matches("[a-zA-Z]+")){ // Validate name fields
JOptionPane.showMessageDialog(null, "<html><i>Improper Input Detected.</i>

[code]...

I can't seem to win with this. Whether the fields are filled in properly or not, I get the error message and the program continues to completion using the name "null".

View Replies View Related

JSF :: Submit Form Says Validation Error

Feb 18, 2015

In my web application (jsf 2.2 + prime 5), when I click the submit button, JSF says: "validation error". I think the problem is related to my equals method contract.

Debugging the equals method, the type received by this method is "Short" (my PK type) and not the object type to compare (professional type in this case). So, equals will return false always!

PK declaration in Entity Class
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id")
private Short id;

equals method:
public boolean equals(Object obj) {
if (obj == null) {
return false;

[Code] ....

Is this correct?

View Replies View Related

JSF :: 2.0 - How To Highlight InputText When Validation Error Occurs

Mar 18, 2014

How to highlight an inputText in JSF 2.0 when a server-side validation error occurs? I have the server side validation,if validation fails, text box color (style) should change. Else it should display in normal color.

View Replies View Related

Program Outputting Null Into Validation Statement - Runtime Error

Oct 17, 2014

I am Having trouble with my program to validate. It is outputting null into the validation statement then it brings back a run-time error to that validation Statement for the String.

public String validateData ()
{
if (nm == null)nm = "Error! Must enter at least one character";
else nm = name;
return name;
}//end validation method

Why is this happening, and then once that is completed, why is the validation Sentence in tests Scores not able to validate. I traced it back to out put "Error, a number between 1<100".

public void validateTests ()
{
String testschange;
if (test1 < 0 || test1 > 100) {
testschange = " You have entered an invalid number, between 1-100. Please restart!";
testschange = Integer.toString( test1 ) ;

[Code] .....

View Replies View Related

Enterprise JavaBeans :: Calling Singleton Bean From Session Bean Returns NullPointerException

Feb 23, 2013

I am doing this

@Startup
@Singleton
@ConcurrencyManagement(ConcurrencyManagementType.CONTAINER)
@Lock(LockType.READ)
public class ResourceBean {

[Code] ....

And I call this singleton bean from a stateless session bean like this

@Stateless
public class ClientBean {
@EJB
ResourceBean resource;

public String create(String r)
{
String res=resource.returnString(r);
return res;
}
}

But resource.returnString(r); gives a org.apache.jasper.JasperException: java.lang.NullPointerException I started the glassfish server in debug mode and found out that "resource" was null. but @PostConstruct in singleton does print which means singleton bean exists.

Can we call singleton beans with no interface in such a way form a session bean? I actually want to acquire instance of singleton bean when a client invokes method in Client bean...

View Replies View Related

JSP / JSTL :: Page Set Bean Variables But Give NullPointerException When Bean Try To Merge In DB

Nov 21, 2013

I'm new to JSP but I've to use it to grab data coming from an external site, pass data to a Bean, write data in a DB and redirect the user to another page. Follow the JSP page.

<%@page import="EJB.getResponse"%>
<%
long paymentID = Long.parseLong(request.getParameter("paymentid"));
String responsecode = "9999";
getResponse g = new getResponse();

[Code] ....
 
This is the bean:

@ManagedBean
@RequestScoped
public class getResponse implements Serializable {
private Long paymentId;
private String result;
private String auth;

[Code] ....
 
On the console I see the prints but I receive the NullPointerException

WARNING: StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
java.lang.NullPointerException
at EJB.getResponse.printData(getResponse.java:72)
at org.apache.jsp.notify_jsp._jspService(notify_jsp.java from :60)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)

[Code] ....

View Replies View Related

Servlets :: How To Persist Data Without HttpSession

Jul 3, 2014

I have a basic HTML calculator that asks the user to input 2 integers and select from a dropdown their desired math operation:

The servlet will process the calculation and counts how many times a certain operation has been used:

The counter for Multiplication has incremented accordingly.

HTML:
<form action = "processcalc.html" method = "post">
<table>
<tr>
<td>First Operand:</td>
<td><input type = "text" name = "firstOperand" required></td>

[Code] ....

Question: However, when I press "Go Back" and process a new computation, all counters reset to 0. Is there a way without using HttpSession to persist the counter values? (It has not been taught to us, so we are not allowed to use it yet.)

For example, going back and having below input...
First Operand: 4
Operator: +
Second Operand: 5

...will result to...
Addition: 1
Subtraction: 0
Multiplication: 1 (counter from previous computation maintained)
Division: 0

View Replies View Related

JSP :: How To Persist User Previous Selection Of Radio Button

Sep 28, 2014

I am making a quiz app and stuck with this problem. User is presented with question with options he select one radio button and move on to next question by clicking next button.

Now when user clicks on the previous button to change the previous selction , I want his previous selection to be shown selected. How can I do that.

View Replies View Related

Swing/AWT/SWT :: Color To Persist In Cell Of Jtable After ComboBox Selection

May 29, 2014

I have a ComboBox I'm using for a cellEditor. The list of items in the comboBox might have colors behind them, which I've managed to render. What I haven't figured out is a good way to keep the color in the cell after the item is selected.I don't' want to have a persistent comboBox in the cell, i only want to see it when editing that cell.

public TableCellEditor getCellEditor(int row, int col)
{
if (row==theRow && col==theCol)
{
JComboBox<?> combo = new JComboBox<Object>(getPickListEntries());
combo.setRenderer(new PickListRenderer(combo));
combo.setBorder(BorderFactory.createEmptyBorder());
}

[code]....

View Replies View Related

EJB / EE :: Entity For Multiple PU And Different DB?

Dec 18, 2013

I have a package (JAR_A) for entity and controller definition, for example:

entity: Entity
controller: EntityController

Then I use this jar in other projects/applications that use the entity.

I want to use the same JAR_A with different persistence unit and different database (in particular, mysql and postgresql) but when I define two persistence unit that include the same class, I have an exception.

So, I comment the other PU and compile the project.

there is a smarter way for use same package with different PU ?

View Replies View Related

EJB / EE :: Relation Between Entity On Server And In Library

Nov 6, 2014

I have the following problem:

I need to make a relation (OneToMany) between a entity on my server and a entity in my library (ManyToOne).

My program consists of 3 main components:

- a client (who uses session beans to query the server)
- a server (which contains entity's)
- a lib which is shared between the client and the server. (which also contains entity's)

Here is the thing I want to do:

Class on my Server:

@Entity
public class ClassOnServer implements Serializable{
@Id
private int uid;
@OneToMany(cascade=ALL, mappedBy="relation")
private Set<ClassOnServer> relation1; //This is no problem, because the server can import the library
}

Class on my Library:

@Entity
public class ClassInLibrary implements Serializable{
@Id
private int uid;
@ManyToOne
private ClassOnServer relation2; //This gives an error because ClassOnServer can not be imported into the library
}

It's not an option to move ClassOnServer to my lib because this would ruin the whole architecture.

View Replies View Related

EJB / EE :: Web Application Entity Manager And PreparedStatement Functionality

Feb 14, 2015

Am trying to develop a web application, and am using the Entity Manager. The web application involves users posting data to the database. How do I incorporate the entity manager together with the prepared Statement functionality to avoid users corrupting the database with SQL tags?

If I have EJB database session beans, when the content of the database changes, does the information on the web page get automatically updated dynamically on the client machine?

View Replies View Related

JSF :: Inserting Parent And Child Entities Into A Third Entity Using SelectOneMenu?

Oct 31, 2014

The company entity contains companyName, Sector and Segment columns. The mapping is 3 entities (Company, Sector, Segment) where Sector and Segment are used to create a company record. Sector has a OneToMany relationship with Segment and with Company. I put the Sector and Segment values into two select menus as use these to create a Sector and Segment reference for the Company table. I'm getting the following exception:

Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row:
a foreign key constraint fails (`testdummy`.`company`, CONSTRAINT `FK_COMPANY_FK_COMPANY_SECTORID` FOREIGN KEY
(`FK_COMPANY_SECTORID`) REFERENCES `sectors` (`SECTORID`))
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)

I'm thinking that the problem is that since the Segment entity is a child of Sector it must be entered through an instance of Sector. Because it's being entered as a separate value I'm getting this error. The problem is Segment is defined as a Set in the Sector entity and I can't figure out how to declare Segment as an instance using its parent entity (Sector).

My code is as follows, starting with the Sector entity:

@Entity
@Table(name = "SECTORSNEW")
public class SectorsNew {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int sectorId;
private String sectorName;
@OneToMany(cascade = CascadeType.PERSIST)

[code]....

View Replies View Related

Enterprise JavaBeans :: How To Use Application Managed Entity Manager In EJB

May 9, 2014

I finish reading The EntityManager Interface in JEE tutorial. I know I can use container manager entity manager in EJB, but I want to explore how to use application managed entity manager in EJB.
 
Can I use application managed entity manager in EJB (container management JTA transaction is used)? Where do I should close entity manager if can?
 
The following is an example from JEE tutorial, but didn't find where to calose entity manager. and can I create mutiple EntityManagerFactory objects and Entity Manager objects to use them in a JTA transaction?
 
@PersistenceUnit
EntityManagerFactory emf;
EntityManager em;
@Resource
UserTransaction utx;

[Code] .....

View Replies View Related

Enterprise JavaBeans :: Why Entity Class Received As Null When Pass Through Remote EJB

Oct 23, 2013

I have an stand alone client to use a remote ejb with some methods. All works fine, but when I pass an entity class as parameter from the stand alone client to the remote ejb, the entity class is received as null.

View Replies View Related

EJB / EE :: Session Bean Must Not Extend Another Session Bean?

Nov 9, 2014

I have tried this example ([URL].../) with CarDao extending the BaseDao, it works like a charm.However, from the CarDao class, my NetBeans underlined the class name “CarDao” with the error message “A session bean must not extend another session bean.” But I can compile, deploy and run the application without any problem.

I have also heard that a session bean cannot extend another session bean, but why it works here?

I am using Java EE 6, NetBeans 8.0.1 and WebLogic 12c for this code testing.

View Replies View Related

Do-while Input Validation

Oct 24, 2014

I need to write an input validation while using the do-while statement. I feel like most of it is good except that it gets stuck inside the brackets of the do statement. After I enter an input, it just keeps asking me over and over for an input. Then I have to make it s if you enter an input that is out of range, you have to keep entering an input until it is in range.

Java Code:

do
{
System.out.print("Please enter the amount of spaces the letters will shift... ");
shift = uInput.nextInt();
} mh_sh_highlight_all('java'); Java Code: public class ShiftEncoderDecoderDriver
{
public static void main(String[] args)

[code]....

View Replies View Related

Adding Validation To A Constructor?

Nov 17, 2014

I want to add validation to some of the elements in my constructor.

Person(String idIn, String nameIn, ) {
this.id = idIn;
this.name = nameIn;
}

I want to be able to check that the data for the ID is limited to a certain collection of characters formatted in a certain. For example, I may wish to limit it to 5 lowercase letters or numbers, or a combination of both. How could I do this?

View Replies View Related

Why Username Validation Not Working

Oct 24, 2014

I have a JSF page for changing login credentials and i preferred to use Java validations instead of JSF validations on the inputText. The password validation works fine but the username validation does not produce any output. This is my JSF form

HTML Code:

<h:form>
<p><strong>Please type your new username: </strong>
<h:inputText size="15" value="#{register.newUsername}"/></p>
<p><strong>Please type new your password: </strong>
<h:inputSecret size="15" value="#{register.newPassword}" /></p>
<p><strong>Please retype new your password: </strong>

[code]....

View Replies View Related

Time Input Validation

Nov 24, 2014

I am trying to validate user input of time. It seems that only part of it works. It will only accept hour 20-23 as valid.

void timeValidate() {
String value = "";
boolean bTryAgain = true;
Scanner sc = new Scanner(System.in);

[Code] .....

View Replies View Related

Date Validation Not Working

Mar 2, 2015

<%@ page import="org.springframework.web.context.WebApplica tionContext" %>
<%@ page import="org.springframework.web.context.support.We bApplicationContextUtils" %>
<%@ page import="java.util.*" %>
<%@ page import="java.util.ArrayList" %>
<%@ page import="java.io.*" %>
<%@ page import="java.text.SimpleDateFormat" %>
<%@ page import="java.net.*" %>

[Code] ....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved