16:43:28,296 INFO [Server] Starting JBoss (MX MicroKernel)...
16:43:28,302 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)
16:43:28,306 INFO [Server] Home Dir: D:\sftwrs\application server\jboss\jboss-3.2.3
16:43:28,307 INFO [Server] Home URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/
16:43:28,309 INFO [Server] Library URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/lib/
16:43:28,313 INFO [Server] Patch URL: null
16:43:28,314 INFO [Server] Server Name: default
16:43:28,314 INFO [Server] Server Home Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default
16:43:28,372 INFO [Server] Server Home URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/
16:43:28,373 INFO [Server] Server Data Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default\data
16:43:28,373 INFO [Server] Server Temp Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default\tmp
16:43:28,374 INFO [Server] Server Config URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/conf/
16:43:28,375 INFO [Server] Server Library URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/lib/
16:43:28,380 INFO [Server] Root Deployment Filename: jboss-service.xml
16:43:28,402 INFO [Server] Starting General Purpose Architecture (GPA)...
Failed to boot JBoss:
javax.management.InstanceNotFoundException: JMImplementation:service=LoaderRepository,name=Default
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(Unknown Source)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(Unknown Source)
at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(Unknown Source)
at org.jboss.system.server.ServerImpl.initBootLibraries(ServerImpl.java:499)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:335)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Unknown Source)
16:43:28,296 INFO [Server] Starting JBoss (MX MicroKernel)...
16:43:28,302 INFO [Server] Release ID: JBoss [WonderLand] 3.2.3 (build: CVSTag=JBoss_3_2_3 date=200311301445)
16:43:28,306 INFO [Server] Home Dir: D:\sftwrs\application server\jboss\jboss-3.2.3
16:43:28,307 INFO [Server] Home URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/
16:43:28,309 INFO [Server] Library URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/lib/
16:43:28,313 INFO [Server] Patch URL: null
16:43:28,314 INFO [Server] Server Name: default
16:43:28,314 INFO [Server] Server Home Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default
16:43:28,372 INFO [Server] Server Home URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/
16:43:28,373 INFO [Server] Server Data Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default\data
16:43:28,373 INFO [Server] Server Temp Dir: D:\sftwrs\application server\jboss\jboss-3.2.3\server\default\tmp
16:43:28,374 INFO [Server] Server Config URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/conf/
16:43:28,375 INFO [Server] Server Library URL: file:/D:/sftwrs/application server/jboss/jboss-3.2.3/server/default/lib/
16:43:28,380 INFO [Server] Root Deployment Filename: jboss-service.xml
16:43:28,402 INFO [Server] Starting General Purpose Architecture (GPA)...
Failed to boot JBoss:
javax.management.InstanceNotFoundException: JMImplementation:service=LoaderRepository,name=Default
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(Unknown Source)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(Unknown Source)
at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(Unknown Source)
at org.jboss.system.server.ServerImpl.initBootLibraries(ServerImpl.java:499)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:335)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:395)
at java.lang.Thread.run(Unknown Source)
Bear Bibeault wrote:You are still not giving us anything to work with. How are these individual servlets mapped? How are you invoking them? Are you restarting the web app between changes?
Stephan van Hulst wrote:The identity of an object is simply that. Every object you create has its own unique identity. It doesn't matter if two objects are of the same class, hold the same references, have the same values; if they were created separately, they have unique identities. If two different variables hold a reference to the same object instance, the objects will be identical.
Equality means whether two (generally unique) objects are equal. Whether they are, depends on how the class defines equality.
Let's take a look at the book class:
book1 and book2 are two different copies of the same book "Nineteen eighty-four", writter by George Orwell. They are unique. However, the book class says that they are equal, because they have the same title and author.
book3 and book1 are obviously unequal, because they have different titles and authors.
book3 and book4 are not only equal, they are also identical, because they refer to the exact same copy of a book.
Paul Sturrock wrote:No. You are missing some Jar files Hibernate depends on. Check the Hibernate documentation to see what the dependencies are. At the very least (as David points out) you are missing commons logging.
David Newton wrote:At the very least you're missing the Apache Commons Logging library.
Vijitha Kumara wrote:Before anything else, are you able to login to MySQL directly (i.e: from a shell/command prompt)?