Posts by Gustavo Arcega • 36 points
2 posts
-
2
votes1
answer281
viewsA: Delete created entity from a Manytomany relation
I believe that if you add a Scade in the Manytomany annotation would already solve the issue, take a look at this tutorial. @ManyToMany(cascade = CascadeType.ALL) [EDIT] An example of a project I…
-
0
votes1
answer544
viewsA: How to call a class through another class using Jmenuitem?
Simply instantiate the class in actionPerformed. item.addActionListener( new ActionListener(){ public void actionPerformed(ActionEvent e){ new Calc(); } } );…