| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 8 months |
| seen | 8 hours ago | |
| stats | profile views | 25 |
|
May 21 |
comment |
Updating entities in Extended Persistence Context This explains why it goes for the User entity when all I want to change is the user in the Workflow entity, as the worfklow entity will get updated correctly though a dirty User entity will still remain in the memory. |
|
May 21 |
comment |
Updating entities in Extended Persistence Context I did some more digging into this and I found out that, JPA will try to persist all dirty entities whenever it does a flush for flush mode AUTO. Now when the user makes a change to the text field at the UI, the entity(since it is managed) becomes dirty. Even if I assign a new entity to the reference, a dirty entity is still present in the memory, which is getting flushed. Any solutions on how to get past this?? |
|
May 6 |
revised |
Updating entities in Extended Persistence Context added 1250 characters in body |
|
Apr 29 |
revised |
Updating entities in Extended Persistence Context added 625 characters in body |
|
Apr 29 |
comment |
Updating entities in Extended Persistence Context Yes I tried it, still the same result. I do feel its more of a configuration thing. |
|
Apr 27 |
revised |
Updating entities in Extended Persistence Context added 774 characters in body |
|
Apr 27 |
asked | Updating entities in Extended Persistence Context |
|
Apr 27 |
accepted | Configuring multiple welcome pages in Seam |
|
Apr 26 |
comment |
JPA: Extending the persistence context vs. detaching entities @Affe, I am facing the same problem as you have mentioned in point 4. My flush mode is MANUAL and the updations are a part of a long running conversation. When the form is Saved first time, the data is stored properly. But when changes are made to the form data on the page that has just rendered, the exact thing happens as you have mentioned. Is there an approach that I can follow to avoid this. As now I cannot break this use case down into a request based thing with detached entities. |
|
Apr 3 |
awarded | Notable Question |
|
Mar 28 |
asked | Configuring multiple welcome pages in Seam |
|
Mar 22 |
accepted | Overwriting existing files while doing a cvs checkout |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout It worked!!... It seems that I did no exclude build.properties file while deleting |
|
Mar 22 |
revised |
Overwriting existing files while doing a cvs checkout added 1435 characters in body |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout Please see the edited info |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout Yes, when i run my checkout target, it works well (delete and co). But when the deploy target is run which in turn runs the checkout target, then it fails. |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout My build.xml is already a part of the code, and it checked in |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout I also tried a few variations of delete, because i thought may be it was the cvs delete tag. I tried "<exec command="${delete.code}"/>" and the command was stored in the properties file as "rm -rf ../../". But both the commands do a partial delete and terminate the build with an error |
|
Mar 22 |
comment |
Overwriting existing files while doing a cvs checkout I did try this before as a part of the checkout target, and it works well only when the checkout target is run, ie. it first deletes all the files and then does a checkout. But when whole thing is run, ie deploy, it fails saying "Unable to delete directory" |
|
Mar 22 |
asked | Overwriting existing files while doing a cvs checkout |