EJB / EE :: Cannot Add Or Update A Child Row When Using EmbeddedID

Jan 1, 2015

I have the following objects:

User Object:

public class User implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(unique = true, nullable = false)
private int id;

@OneToMany(fetch = FetchType.EAGER, mappedBy = "user", cascade = CascadeType.ALL)
private List<UserReason> userReasons;
....

Code :

public List<UserReason> getUserReasons() {
return userReasons;
}
public void setUserReasons(List<UserReason> userReasons) {
this.userReasons = userReasons;
}

public UserReason addUserReason(UserReason userReason) {
if (userReasons == null) {
userReasons = new ArrayList<UserReason>();

[Code] ....

I want to be able to add userReason to the list, and that Hibernate will automatically update the reference between the parent & child object.

When using the above code, when trying to start the server, i'm getting the error message:

Repeated column in mapping for entity: com.commit.safebeyond.model.UserReason column: userId (should be mapped with insert="false" update="false")

Please notice that i mapped the userId in UserReasonPK with insertable = false, updatable = false.

If i change it, and add this on the User property in UserReason object, server is up, but when trying to insert new User I'm getting the following error:

Hibernate: insert into UserReasons (reasonId, userId) values (?, ?)
WARN 2015-01-01 13:25:17,488 [http-nio-8080-exec-2] org.hibernate.engine.jdbc.spi.SqlExceptionHelper - SQL Error: 1452, SQLState: 23000
ERROR 2015-01-01 13:25:17,488 [http-nio-8080-exec-2] org.hibernate.engine.jdbc.spi.SqlExceptionHelper - Cannot add or update a child row: a foreign key constraint fails (`SafeBeyond`.`UserReasons`, CONSTRAINT `FK_UserReasons_Users` FOREIGN KEY (`userId`) REFERENCES `Users` (`id`))

[Code] ....

View Replies


ADVERTISEMENT

Java Array Update Without Using ArrayList - Add Values And Update Size?

Feb 9, 2015

I am trying to create an array list without using the built in arrayList class that java has. I need to start the array being empty with a length of 5. I then add objects to the array. I want to check if the array is full and if not add a value to the next empty space. Once the array is full I then need to create a second array that starts empty and with the length of the first array + 1.

The contents of the first array are then copied into the new array without using the built in copy classes java has and then the new array ends up containing 5 elements and one null space the first time round. The first array is then overwritten with the new array containing the 5 elements and the null space. The process then starts again adding values until the array is full which will be 1 more value then recreating the second array empty and the length of the first array + 1. This is my attempt at creating this but I have run into multiple problems where I get only the last value I added and the rest of the values are null:

public class MyArrayList {
public Object arrayList[];
public MyArrayList(Object[] arrayList) {
this.arrayList = arrayList;

[code]...

View Replies View Related

JSF :: Update Action Does Not Update Bean Attribute

May 14, 2014

I have a strange behaviour when trying to update a bean. Here is the edit page:

<h3>Edit Post</h3>
<div class="row">
<h:form>
<div class="small-3 columns">
<label for="right-label" class="right inline">Title</label>

[Code] ....

Here is the bean class:

package com.airial.controllers;
import com.airial.domain.Post;
import com.airial.service.PostService;
import com.ocpsoft.pretty.faces.annotation.URLMapping;
import com.ocpsoft.pretty.faces.annotation.URLMappings;
import org.springframework.beans.factory.annotation.Autowired;

[code]...

postToUpdatet is always NULL. Why the title property is not binded ? What is wrong here ?

View Replies View Related

Swing/AWT/SWT :: Relationship Between Super And Child?

Aug 27, 2014

I want to make an application and must use strategy pattern my idea is to create a super class in this case Movie Player and three sub classer and they'll komminesera with each other using strattegy pattern, one of the sub classes is Button Panel and I want to add it to Movie Player and it was to be its child,so how can I add the butt panel to Movie Player and it shall be its children?

MoviePlayer:
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import com.github.sarxos.webcam.WebcamPanel;

[code]....

View Replies View Related

Swing/AWT/SWT :: What Are Parent And Child Components

Aug 11, 2014

I keep hearing these two term when it comes to painting in Swing, however, I'm not sure which is which. To my understanding is that the child components are the ones that already exist on screen (could be a JButton, JFrame, or custom painting) . and the parent components are the one to be added/drawn next. (hence, if we override the paintChildren() method when painting, the components that were already on the screen don't appear any more).

View Replies View Related

Calling Child Methods From Main

May 7, 2015

I can call a child method from a main method. If I have a parent called "Assessment", a child called "Quiz", and another child called "test". Can I instantiate an object like Assessment a = new test(); and call a method in test.

I know the method can be called if I instantiate the test t = new test() but that defeats the purpose of inheritance...

View Replies View Related

Can't Navigate From Child To Main Panel

Apr 4, 2014

i have created two(displaypanel & buttonpanel) main panels in a JFrame and many child panels,one of the panel is for holding buttons and displaypanel mainly swap child panel as directed from buttonpanel, but the problem arises i cannot navigate from child panel to another child panel,

as i have made a button on one of a child panel and from button panel i add the childpanel to displaypanel.it is working but when i tried to navigate from the button which is on child panel nothing happened. "i have made a function in main form which swap the content of mainpanel (displaypanel) and in childpanel i have acces the function through object of mainform"

View Replies View Related

Cannot Call Child Method From Main

May 7, 2015

I can call a child method from a main method. If I have a parent called "Assessment", a child called "Quiz", and another child called "test". Can I instinate an object like Assessment a = new test(); and call a method in test.I know the method can be called if I instinate the test t = new test() but that defeats the purpose of inheritance which I'm learning in class.

View Replies View Related

Parent / Child Classes - Set And Get Method?

Jan 25, 2014

I have been working on a simple problem, but I am stuck. I am trying to learn parent and child classes and how they work. The program in broken into three classes; the DemoBook class that runs the various methods, the Book class that gathers information and displays it, and finally a child class of Book (called TextBook) that just gets one piece of data and then is suppossed to return that data back to Book. However, this is not working and I know I am missing something; I believe it has to do with Set and Get methods, but I am confused with how these work.

Java Code:

public class DemoBook
{
public static void main (String[] args)
{
Book aBook = new Book();
Textbook aText = new Textbook();

[Code] .....

View Replies View Related

Construction Of Child Object In Memory

Apr 19, 2015

I understand how to write a child object. I know what can access what and the order of execution of each statement, including fields, initialization blocks, and constructors. I know what will be inherited by the child and how private fields and methods are not inherited. I also know that private fields and methods in Parent are still accessible indirectly through constructors, and non-private methods. I know how to use super() and this() with or without parameters. I know when super() will be automatically inserted by the compiler and how the Object class will always be the ultimate parent class. However, I have not been able to find an explanation of exactly (or even approximately) how all this is actually put together into an actual object in memory.

For instance, if Parent.field is private and Parent.fieldGetter() is public then Child inherits fieldGetter() and can call it directly as if it is a member of Child. In fact other classes can call Child.fieldGetter() with no clue that it is not an actual member of Child. But, if fieldGetter() is now part of Child and Parent was never actually instantiated, then how is Parent.field available for Child.fieldGetter() to read? In fact, how does Parent.field exist at all? Where is it stored? (OK, I know, "on the heap.") But I want to know what it is associated with in memory. Is it treated like part of Child? Is there really a Parent object on the heap and Child simply contains references to the parts of Parent that it inherited? What?

View Replies View Related

Parent-Child Commenting Algorithm

Sep 11, 2014

I am creating a commenting system for a side project of mine I'm building using AnuglarJS for the front-end and Spring MVC for the backend.

I am having difficulty coming up with an algorithm that will populate each comment object with a list of the comments that are responses/children of it.

The below code is what I have so far. The problem is is that it duplicates comments.

public List<Comment> getComments(int id)
{
MapSqlParameterSource params = new MapSqlParameterSource();
params.addValue("id", id);
List<Comment> allComments = jdbc.query("select * from comments where debate_id=:id", params, new RowMapper<Comment>()

[Code] ....

View Replies View Related

JPA Not Loading Child Objects Via One To Many Relationship

Jun 22, 2014

package com.mkyong.persistence;
import java.util.Date;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;

[Code] ....

Everything is working fine but in my case One customer has Many orders but when i do customer.getOrders() the child objects are not loading . I dont know why.am i missing something here im using MYSQL database

View Replies View Related

Significant Of Object With Parents / Child

Sep 29, 2014

Below mentioned classes, create object system accept in both way so what is it significant.

============
ABC obj = new Test();

Test obj = new Test();
==================

--file ABC class

class ABC{   public void disp()   {   System.out.println("disp() method of parent class");   }  
public void abc()   {   System.out.println("abc() method of parent class");   }  }

--file Test class

class Test extends ABC{   public void disp(){   System.out.println("disp() method of Child class");   }  
public void xyz(){   System.out.println("xyz() method of Child class");   }  
public static void main( String args[]) {   //Parent class reference to child class object 
ABC obj = new Test();  obj.disp();  obj.abc();   }}

View Replies View Related

JSP :: Get Child Of Anchor Tag Forwarded To Hyper Reference

May 10, 2014

Is there a way to forward the text child of an anchor tag to its hyper reference?

For example, suppose I have an HTML file:

<a href = "ABC.jsp">SomeText</a>

Is there a way to send text 'SomeText' to ABC.jsp so it can be processed?

View Replies View Related

Swing/AWT/SWT :: Child Window Doesn't Open

Mar 23, 2014

sale s = new sale();
jDesktopPane1.add(s);
s.show();

says not a suitable method?

View Replies View Related

How To Use JFrame In Child Class - Two Extend Calls

Feb 4, 2014

I am working with a program where I am required to use a JFrame in a child class. The only way that I know how to access a JFrame is to do, example (public class Example extends JFrame), but since it is already extending the parent class, I am kind of stuck. I do not think that you can extend two separate classes, so..... I am stuck.

View Replies View Related

ArrayList Of Interface - Does It Rip Away Data From Child Classes?

Nov 29, 2014

If I lets say have an interface Animal, and I create a lot of classes with a different animal name that implement the interface Animal. Then I create an ArrayList of Animal. Then I would put in lets say Dog class into the ArrayList, which has custom methods and data that the Animal Interface doesn't have, is this data ripped away except for the methods that are put in the Animal interface? So if I would cast the Animal back to Dog, would it retain all the data that existed before it was placed in the ArrayList?

View Replies View Related

Painting In Swing - Parent And Child Components?

Aug 11, 2014

I keep hearing these two term when it comes to painting in Swing, however, I'm not sure which is which. To my understanding is that the child components are the ones that already exist on screen (could be a JButton, JFrame, or custom painting) . and the parent components are the one to be added/drawn next. (hence, if we override the paintChildren() method when painting, the components that were already on the screen don't appear any more) ....

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

Encapsulation - Protected Attributes Should Be Visible To Child Classes

Jun 7, 2013

I found the following inheritance and encapsulation issue . Suppose you have a parent class with a non-static protected attribute.

package package1;
public class Parent{
protected int a = 10; // this is the non-static protected attribute in question
public static void main(String args[]){
// whatever logic
}// end Parent class
}// end main()

Now suppose you have a child class in another package and you have imported in the parent class.

package package2;
import package1.Parent;
public class Child extends Parent{
public static void main(String[] args){
Parent p = new Parent();
Child c = new Child();

System.out.println(p.a); //should print out 10 BUT DOES NOT
System.out.println(c.a); //should print out 10
}// end main()
}// end Child class

My observation is that p.a produces an error even though, to the best of my knowledge, it should not. I believe the statement "System.out.println(p.a);" should print out a 10.

Am I misunderstanding something about inheritance and encapsulation?

View Replies View Related

JSF :: Create A List Or Array Of Child Elements To Feed To Java Bean

Feb 5, 2014

I have a project I am currently working on using Primefaces and MySQL. I have a page that will display information queried from the database. I have textfields that will display the data from a given record. But I want to ensure that the displayed data cannot be altered. I decided on disabling the textfields unless the create or edit button were clicked. At which point all textfields will be enabled for editing, and cleared if create button was clicked. I want to push the disabling/enabling of the elements back to a managed bean, but I want to have the bean take in two lists or arrays, one containing all elements by ID and one containing a list of exempt elements. Is there a way I can create a List or Array of the ID's that I can send to the bean? I know little in Javascript and previous attempts to implement it have met with little success.

A short example of the code:

<p:tabView>
<p:tab id=pmDBTab title="PM Database Tab">
<p:panelGrid id="projectInfo">
<p:row id="rowOne">
<p:column id="r1c1" colspan="2">
<p:outputLabel id="searchLabel" for="searchField" value="Search: " style="font-weight: bolder"/>

[Code] ....

I want to create a list that would contain all and another that would contain the exemptions such as searchField, searchCriteria, searchButton, projectList and viewButton. The actual exemption list is far smaller than the list of all children. I have found sources that can disable the elements with a java bean, but I have not been able to find one that would allow me to define those that should and should not be disabled, then vice versa for enabling.

View Replies View Related

Update XML Using DOM Objects

Sep 29, 2014

I have a requirement to insert the data into xml file . I have used DOM class for doing this. Below is my xml file

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<deployments>
<applications>
<application>
<name> PCMH</name>

[Code] ....

The thing is if SITA is the name then I have to insert component to the particular envi tabs , if DEVB is the component I have to insert the component there. How can I do this I have done some code its inserting the data at the bottom og the XML .

View Replies View Related

JSP :: Possible To Update The List?

Mar 18, 2015

I have arraylist which is already set in controller side.

I need to update the same list(removing few elements in the list) in jsp based on few conditions like, the selected values in dropdown kind off.

How to update the list in jsp?. Is there any way to handle this using JSTL?.

Instead of using scriptlets, can i do this?

View Replies View Related

Inheritance In Java - Child Class Get Copy Of Methods And Variables Of Parent Class?

Mar 1, 2015

Does child class gets a copy of the methods and variables of parent class?

public class test1 {
public static void main(String a[]) {
Child c = new Child();
c.print();

[Code] ....

why is the output 1?

View Replies View Related

Creating Program That Will Estimate Child Height Based On Height Of Parents

Jun 19, 2014

I am trying to create a program that will estimate a child height based on the height of the parents. It should ask the user to enter a String representing the gender, so m or M for a male and f or F for a female. The program must handle both upper or lower case gender entries. I need it to ask the user for the height of both parents in two parts:

1. for Feet and store in an int variable.
2. for inches and store and int variable.

So for example if the father is 6' 2'', the user would enter 6 when asked for feet and 2 when asked for inches. Convert the height of the each parent to inches. hint 12" in one foot.

Apply the following formulas based on gender (must use an if statement(s)):

Hmale_child = ((Hmother * 13/12) + Hfather)/2
Hfemale_child = ((Hfather * 13/12) + Hmother)/2

I cannot figure out what is missing from my code

<import java.util.Scanner;
public class ChildHeight
{
public static void main(String[] args) {
Scanner scannerObject = new Scanner(System.in);
String gender;
String male;
String female;

[Code] ....

View Replies View Related

Servlets :: Calling DoGet Of Child Class From Service Of Parent Class

May 28, 2014

Regarding the lifecycle of servlet , in headfirst servlet i can find :

You normally will NOT override the service() method, so the one from HttpServlet will run. The service() method figures out which HTTP method (GET, POST, etc.) is in the request, and invokes the matching doGet() or doPost() method. The doGet() and doPost() inside HttpServlet don’t do anything, so you have to override one or both. This thread dies (or is put back in a Container-managed pool) when service() completes.

How can I call the doGet method of the subclass from the superclass. i am not getting this .

View Replies View Related







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