Internal Website Search

101-110 of 168 resultsRefresh

@PrePersist Implementation

of more than one event. When a managed entity object is updated, to get the entity before the update use the @PreUpdate event, and to get the entity ... in the @PreUpdate event,

@Convert is not supported?

using a event">JPA lifecycle event (PostLoad). Thanks for "JPA lifecycle event" I didn't know about this functionality. so this could be achieved by JPA lifecycle events. support Support Yes but those methods

PostUpdate on array changes

>All other property changes fire events just fine. thoughts?     dmoshal David Moshal Note: PostUpdate events are fired if the list contains ... >Then I expect a PostUpdate event to be fired for entity A, but no events are fired.

Exception after update of indices of Entity class

.recurringEvent"}),     @Index (members = {"relations.related"}) }) public class Event extends ... recurringEventId = null;     private Event recurringEvent = null;    ... {     private String relatedId = null;     private Event related = null

Does ObjectDB has a similar feature like Oracle Database Change Notification ?

based on event">JPA lifecycle events. But these events ... notification mechanism, your application has to set listeners for these events and then notify other applications and servers. support Support

Redeployment in GlassFish - Failed to open file

to this post. WARNING: Exception while dispatching an event java.lang.IllegalStateException ... .event(JPADeployer.java:395) at org.glassfish.kernel.event.EventsImpl$1.run(EventsImpl.java:120) WARNING: Exception while dispatching an event java.lang

Metamodel Attribute NOT EQUALS to same Attribute in a different EntityManager

Attribute from Metamodel initialized on @PostConstruct event IS NOT EQUALS of the same ... event. I am testing one application over Spring Web MVC and I can not post one Simple Test ... . One of these is on a @PostConstruct event and the other on a @Controller @RequestMapping event, they return not

@Column length is not working.

/persistence/event">lifecycle event callback. support Support i think implementation of lifecycle event callback is expensive for check the length of a field. Is there any other way? 

Missing (null) elements in eager loaded references

>   Is there an event, notification which indicates that all references ... Pfaff > Is there an event, notification which indicates that all references have been resolved? Loading is not asynchronous, so there is no need for any event, and it is not

InternalException

FROM Event e, Guest g WHERE e.calendarId = :calendarId" + " AND e.activeStartDate < ... -java"> TypedQuery<Event> q1 = em.createQuery("SELECT e FROM Event e WHERE e.calendarId ... " + " AND :userId IN e.guests", Event.class); bensteele Ben Steele Maybe