[JBoss Portal] - Errors when stopping Portal Server
by dleerob
When stopping the JBoss Application server, I get a few exceptions/errors in the background. I don't think they are serious, but would still like to know why they are happening and how I can stop them. They only occur if the portal is deployed.
>From what I can tell, it seems that when dropping the server (pressing ctrc+c in the server window) or using the shutdown.bat file, it tries to delete files from server\default\tmp\deploy, however, this fails.
In the log window, I can see exceptions:
| "Deployer destroy failed for: file [filename]
| "java.lang.reflect.UndeclaredThrowableException......" etc etc.
|
In the server.log I can see a bunch of entries:
| 2007-02-12 13:25:42,843 DEBUG [org.jboss.system.server.Server] Deleting server tmp/deploy directory
| 2007-02-12 13:25:42,859 DEBUG [org.jboss.util.file.Files] Failed to delete file: C:\work\jboss\jboss-4.0.5.GA\server\default\tmp\deploy\tmp50301jboss-aop.jar
| 2007-02-12 13:25:42,859 DEBUG [org.jboss.util.file.Files] Failed to delete file: C:\work\jboss\jboss-4.0.5.GA\server\default\tmp\deploy\tmp50302jboss-aspect-library.jar
| 2007-02-12 13:25:42,859 DEBUG [org.jboss.util.file.Files] Failed to delete file: C:\work\jboss\jboss-4.0.5.GA\server\default\tmp\deploy\tmp50303trove.jar...........and the list goes on.
|
Anyone have any ideas why this is happening or how I can get rid of the errors?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4014962#4014962
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4014962
19Â years, 2Â months
[JBoss Seam] - refresh view
by straubp
Hi,
I'm having an entity like person with a sub entity like an address. On a page I'm showing information about the person:
| <h:outputText value="#{person.id}" />
| <h:outputText value="#{person.address.street}" />
|
Now I'm pressing a next-button to show the infos about the next person:
| public void next() {
|
| person= (Person) database.merge(personListManager.nextPerson());
| }
|
The next person then gets loaded and outjected. What now happens is that #{person.id} is showing the id of the next person but #{person.address.street} is still showing the data of the first one. Seems like the sub-entity got cached and is not refreshed.
Can somebody please tell me, how I can display the right address?
Thanks!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4014942#4014942
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4014942
19Â years, 2Â months