Skip to content

Instantly share code, notes, and snippets.

@rosenfeld
Created December 15, 2011 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosenfeld/0f9bea908a025211736e to your computer and use it in GitHub Desktop.
Save rosenfeld/0f9bea908a025211736e to your computer and use it in GitHub Desktop.
Grails 2 upgrade problem
// under scripts/
import groovy.xml.StreamingMarkupBuilder
/**
*** TODO GLASSFISH - Remove log4j configuration stuff (when running with JBoss or GlassFish a.s.o) ***
*/
eventWebXmlEnd = {String tmpfile ->
def root = new XmlSlurper().parse(webXmlFile)
// When running with JBoss (or GlassFish a.s.o) remove log4j configuration stuff
def log4j = root.listener.findAll {node ->
node.'listener-class'.text() == 'org.codehaus.groovy.grails.web.util.Log4jConfigListener'
}
log4j.replaceNode {}
def log4jFile = root.'context-param'.findAll {node ->
node.'param-name'.text() == 'log4jConfigLocation'
}
log4jFile.replaceNode {}
webXmlFile.text = new StreamingMarkupBuilder().bind {
mkp.declareNamespace("": "http://java.sun.com/xml/ns/j2ee")
mkp.yield(root)
}
}
/**
*** TODO GLASSFISH Remove log4j and use jul as used by GlassFish instead ***
*/
eventCreateWarStart = { warName, stagingDir ->
if (grailsEnv == "production" || grailsEnv == "test") {
String log4jVer = "1.2.15"
String slf4jVer = "1.5.8"
[
"lib/log4j-${log4jVer}.jar", // log4j not used with GlassFish
"classes/log4j.properties", // logging conf done in GlassFish Admin only
"lib/slf4j-log4j12-${slf4jVer}.jar", // log4j not used with Glassfish
"lib/jul-to-slf4j-${slf4jVer}.jar", // not required, native JUL with by GlassFish
// you might want to remove JDBC drivers when using server supplied JNDI...
// "lib/hsqldb-1.8.0.10.jar",
].each {
println "*** GLASSFISH *** _Events.groovy removing ${it}"
Ant.delete(file: "${stagingDir}/WEB-INF/$it")
}
// Grails+Ivy (as yet) do not provide war-only dependencies - thus we fetch them manually
Ant.mkdir(dir: "${basedir}/glassfishlibs") // to this dir (in case your internet breaks down)
[
"slf4j-jdk14", // from http://repo1.maven.org/maven2/org/slf4j/slf4j-jdk14/1.5.8/slf4j-jdk14-1.5.8.jar
"log4j-over-slf4j", // from http://repo1.maven.org/maven2/org/slf4j/log4j-over-slf4j/1.5.8/log4j-over-slf4j-1.5.8.jar
].each { artifactId ->
String fileName = "${artifactId}-${slf4jVer}.jar"
if (!(new File("${basedir}/glassfishlibs/${fileName}")).file ) {
println "*** GLASSFISH *** _Events.groovy getting ${fileName}"
Ant.get(dest: "${basedir}/glassfishlibs/${fileName}",
src: "http://repo1.maven.org/maven2/org/slf4j/${artifactId}/${slf4jVer}/${fileName}")
}
println "*** GLASSFISH *** _Events.groovy copying ${fileName}"
Ant.copy(file: "${basedir}/glassfishlibs/${fileName}",
tofile: "${stagingDir}/WEB-INF/lib/${fileName}")
}
}
}
2011-12-15 17:25:13,740 [main] WARN util.GrailsUtil - [DEPRECATED] Method ApplicationHolder.setApplication(application) is deprecated and will be removed in a future version of Grails.
2011-12-15 17:25:14,861 [main] INFO webxml.WebxmlGrailsPlugin - Loading default config file: class DefaultWebXmlConfig
2011-12-15 17:25:14,878 [main] WARN webxml.WebxmlGrailsPlugin - Did not find application config file: WebXmlConfig
2011-12-15 17:25:15,266 [main] INFO webxml.WebxmlGrailsPlugin - Loading default config file: class DefaultWebXmlConfig
2011-12-15 17:25:15,271 [main] WARN webxml.WebxmlGrailsPlugin - Did not find application config file: WebXmlConfig
| Running Grails application
2011-12-15 17:25:15,755 [main] INFO http11.Http11Protocol - Initializing ProtocolHandler ["http-bio-8081"]
2011-12-15 17:25:15,802 [main] INFO core.StandardService - Starting service Tomcat
2011-12-15 17:25:15,802 [main] INFO core.StandardEngine - Starting Servlet Engine: Apache Tomcat/7.0.16
2011-12-15 17:25:15,885 [main] INFO startup.ContextConfig - No global web.xml found
2011-12-15 17:25:16,212 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.hibernate4.SpringJtaSessionContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.hibernate4.SpringJtaSessionContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:16,250 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.hibernate4.SpringSessionContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.hibernate4.SpringSessionContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:16,277 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.ibatis.support.AbstractLobTypeHandler] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.ibatis.support.AbstractLobTypeHandler
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:16,285 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.ibatis.support.BlobByteArrayTypeHandler] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.ibatis.support.BlobByteArrayTypeHandler
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:16,293 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.ibatis.support.BlobSerializableTypeHandler] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.ibatis.support.BlobSerializableTypeHandler
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:16,302 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.orm.ibatis.support.ClobStringTypeHandler] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.orm.ibatis.support.ClobStringTypeHandler
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:17,825 [main] WARN startup.ContextConfig - Unable to load class [com.opensymphony.module.sitemesh.freemarker.FreemarkerDecoratorServlet] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.opensymphony.module.sitemesh.freemarker.FreemarkerDecoratorServlet
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:17,860 [main] WARN startup.ContextConfig - Unable to load class [com.opensymphony.module.sitemesh.tapestry.Property] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.opensymphony.module.sitemesh.tapestry.Property
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:17,865 [main] WARN startup.ContextConfig - Unable to load class [com.opensymphony.module.sitemesh.tapestry.SiteMeshBase] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.opensymphony.module.sitemesh.tapestry.SiteMeshBase
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:17,871 [main] WARN startup.ContextConfig - Unable to load class [com.opensymphony.module.sitemesh.tapestry.Title] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.opensymphony.module.sitemesh.tapestry.Title
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:17,880 [main] WARN startup.ContextConfig - Unable to load class [com.opensymphony.module.sitemesh.velocity.VelocityDecoratorServlet] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.opensymphony.module.sitemesh.velocity.VelocityDecoratorServlet
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,039 [main] WARN startup.ContextConfig - Unable to load class [com.mysql.jdbc.integration.c3p0.MysqlConnectionTester] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.mysql.jdbc.integration.c3p0.MysqlConnectionTester
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,044 [main] WARN startup.ContextConfig - Unable to load class [com.mysql.jdbc.integration.jboss.ExtendedMysqlExceptionSorter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.mysql.jdbc.integration.jboss.ExtendedMysqlExceptionSorter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,050 [main] WARN startup.ContextConfig - Unable to load class [com.mysql.jdbc.integration.jboss.MysqlValidConnectionChecker] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.mysql.jdbc.integration.jboss.MysqlValidConnectionChecker
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,831 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractEnterpriseBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractEnterpriseBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,835 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractJmsMessageDrivenBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractJmsMessageDrivenBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,841 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractMessageDrivenBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractMessageDrivenBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,845 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractSessionBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractSessionBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,850 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractStatefulSessionBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractStatefulSessionBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,855 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.AbstractStatelessSessionBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.AbstractStatelessSessionBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,859 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ejb.support.SmartSessionBean] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ejb.support.SmartSessionBean
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,993 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.backportconcurrent.ConcurrentTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.backportconcurrent.ConcurrentTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:18,997 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.backportconcurrent.CustomizableThreadFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.backportconcurrent.CustomizableThreadFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:19,002 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.backportconcurrent.ThreadPoolTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.backportconcurrent.ThreadPoolTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:19,942 [main] WARN startup.ContextConfig - Unable to load class [org.quartz.xml.JobSchedulingDataProcessor$CalendarRuleSet] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.quartz.xml.JobSchedulingDataProcessor$CalendarRuleSet
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:19,952 [main] WARN startup.ContextConfig - Unable to load class [org.quartz.xml.JobSchedulingDataProcessor$MisfireInstructionRule] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.quartz.xml.JobSchedulingDataProcessor$MisfireInstructionRule
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:19,957 [main] WARN startup.ContextConfig - Unable to load class [org.quartz.xml.JobSchedulingDataProcessor$SimpleConverterRule] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.quartz.xml.JobSchedulingDataProcessor$SimpleConverterRule
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:19,962 [main] WARN startup.ContextConfig - Unable to load class [org.quartz.xml.JobSchedulingDataProcessor$TriggerRuleSet] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.quartz.xml.JobSchedulingDataProcessor$TriggerRuleSet
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:20,848 [main] WARN startup.ContextConfig - Unable to load class [com.mongodb.util.TestNGListener] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: com.mongodb.util.TestNGListener
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,149 [main] WARN startup.ContextConfig - Unable to load class [org.apache.log4j.net.JMSSink] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.log4j.net.JMSSink
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,153 [main] WARN startup.ContextConfig - Unable to load class [org.apache.log4j.net.SMTPAppender$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.log4j.net.SMTPAppender$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,454 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockActionRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockActionRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,458 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockActionResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockActionResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,461 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockBaseURL] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockBaseURL
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,465 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockCacheControl] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockCacheControl
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,469 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockClientDataRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockClientDataRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,472 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockEvent] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockEvent
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,476 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockEventRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockEventRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,479 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockEventResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockEventResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,483 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockMimeResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockMimeResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,487 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockMultipartActionRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockMultipartActionRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,491 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortalContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortalContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,494 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletConfig] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletConfig
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,499 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,503 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletPreferences] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletPreferences
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,507 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,511 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletRequestDispatcher] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletRequestDispatcher
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,514 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,518 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletSession] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletSession
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,522 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockPortletURL] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockPortletURL
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,525 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockRenderRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockRenderRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,528 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockRenderResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockRenderResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,532 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockResourceRequest] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockResourceRequest
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,535 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockResourceResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockResourceResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,538 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockResourceURL] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockResourceURL
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,542 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.MockStateAwareResponse] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.MockStateAwareResponse
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,545 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mock.web.portlet.ServletWrappingPortletContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mock.web.portlet.ServletWrappingPortletContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,597 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.test.context.testng.AbstractTestNGSpringContextTests] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.test.context.testng.AbstractTestNGSpringContextTests
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:22,601 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,284 [main] WARN startup.ContextConfig - Unable to load class [org.dom4j.datatype.DatatypeAttribute] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.dom4j.datatype.DatatypeAttribute
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,289 [main] WARN startup.ContextConfig - Unable to load class [org.dom4j.datatype.DatatypeElement] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.dom4j.datatype.DatatypeElement
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,351 [main] WARN startup.ContextConfig - Unable to load class [org.dom4j.swing.XMLTableDefinition] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.dom4j.swing.XMLTableDefinition
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,379 [main] WARN startup.ContextConfig - Unable to load class [org.dom4j.xpath.DefaultNamespaceContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.dom4j.xpath.DefaultNamespaceContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,385 [main] WARN startup.ContextConfig - Unable to load class [org.dom4j.xpp.ProxyXmlStartTag] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.dom4j.xpp.ProxyXmlStartTag
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,516 [main] WARN startup.ContextConfig - Unable to load class [org.apache.ivy.plugins.repository.sftp.SFTPRepository$MyProgressMonitor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.ivy.plugins.repository.sftp.SFTPRepository$MyProgressMonitor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,521 [main] WARN startup.ContextConfig - Unable to load class [org.apache.ivy.plugins.repository.ssh.SshCache$CfUserInfo] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.ivy.plugins.repository.ssh.SshCache$CfUserInfo
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,527 [main] WARN startup.ContextConfig - Unable to load class [org.apache.ivy.plugins.repository.vfs.VfsRepository$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.ivy.plugins.repository.vfs.VfsRepository$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:23,555 [main] WARN startup.ContextConfig - Unable to load class [org.apache.ivy.util.url.HttpClientHandler$IvyCredentialsProvider] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.ivy.util.url.HttpClientHandler$IvyCredentialsProvider
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:24,661 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.beans.factory.config.ProviderCreatingFactoryBean$TargetBeanProvider] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.beans.factory.config.ProviderCreatingFactoryBean$TargetBeanProvider
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:24,722 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyProvider] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyProvider
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,379 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.remoting.jaxrpc.ServletEndpointSupport] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.remoting.jaxrpc.ServletEndpointSupport
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,452 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.DecoratingNavigationHandler] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.DecoratingNavigationHandler
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,456 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.DelegatingNavigationHandlerProxy] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.DelegatingNavigationHandlerProxy
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,460 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.DelegatingPhaseListenerMulticaster] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.DelegatingPhaseListenerMulticaster
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,463 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.DelegatingVariableResolver] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.DelegatingVariableResolver
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,468 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.SpringBeanVariableResolver] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.SpringBeanVariableResolver
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,471 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.jsf.WebApplicationContextVariableResolver] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.jsf.WebApplicationContextVariableResolver
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,751 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.AbstractSpringPreparerFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.AbstractSpringPreparerFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,756 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.SimpleSpringPreparerFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.SimpleSpringPreparerFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,760 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.SpringBeanPreparerFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.SpringBeanPreparerFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,763 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.SpringLocaleResolver] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.SpringLocaleResolver
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,771 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.SpringTilesApplicationContextFactory$SpringWildcardServletTilesApplicationContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.SpringTilesApplicationContextFactory$SpringWildcardServletTilesApplicationContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,775 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.SpringTilesApplicationContextFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.SpringTilesApplicationContextFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,779 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesContainerFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesContainerFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,783 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesInitializer] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesInitializer
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,792 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.tiles2.TilesView$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.tiles2.TilesView$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,803 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareDateTool] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareDateTool
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,807 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareNumberTool] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareNumberTool
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,950 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.CachedMessageConsumer] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.CachedMessageConsumer
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,957 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.CachedMessageProducer] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.CachedMessageProducer
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,966 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.CachingConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.CachingConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,970 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.ChainedExceptionListener] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.ChainedExceptionListener
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,976 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.DelegatingConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.DelegatingConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,981 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.SessionProxy] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.SessionProxy
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,985 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.SingleConnectionFactory$InternalChainedExceptionListener] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.SingleConnectionFactory$InternalChainedExceptionListener
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,992 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.SingleConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.SingleConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,996 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.SingleConnectionFactory102] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.SingleConnectionFactory102
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:25,999 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.SmartConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.SmartConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,010 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,015 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.connection.UserCredentialsConnectionFactoryAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.connection.UserCredentialsConnectionFactoryAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,032 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.SimpleMessageListenerContainer$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.SimpleMessageListenerContainer$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,036 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.SimpleMessageListenerContainer$2] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.SimpleMessageListenerContainer$2
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,040 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.SimpleMessageListenerContainer] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.SimpleMessageListenerContainer
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,044 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.SimpleMessageListenerContainer102] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.SimpleMessageListenerContainer102
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,049 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.adapter.MessageListenerAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.adapter.MessageListenerAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,053 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.adapter.MessageListenerAdapter102] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.adapter.MessageListenerAdapter102
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,059 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.endpoint.JmsMessageEndpointFactory$JmsMessageEndpoint] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.endpoint.JmsMessageEndpointFactory$JmsMessageEndpoint
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:26,063 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jms.listener.endpoint.JmsMessageEndpointFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jms.listener.endpoint.JmsMessageEndpointFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,049 [main] WARN startup.ContextConfig - Unable to load class [org.h2.util.DbDriverActivator] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.h2.util.DbDriverActivator
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,328 [main] WARN startup.ContextConfig - Unable to load class [net.sf.json.xml.XMLSerializer$CustomElement] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: net.sf.json.xml.XMLSerializer$CustomElement
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,332 [main] WARN startup.ContextConfig - Unable to load class [net.sf.json.xml.XMLSerializer$XomSerializer] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: net.sf.json.xml.XMLSerializer$XomSerializer
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,375 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.BlockQuoteFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.BlockQuoteFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,379 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.BoldFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.BoldFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,383 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.CodeFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.CodeFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,391 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.DocEngine] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.DocEngine
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,405 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.ImageFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.ImageFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,410 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.ItalicFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.ItalicFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,416 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.NoteMacro] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.NoteMacro
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,421 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.TextileLinkFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.TextileLinkFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,424 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.WarningMacro] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.WarningMacro
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,430 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.filters.HeaderFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.filters.HeaderFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,434 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.filters.LinkTestFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.filters.LinkTestFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,438 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.filters.ListFilter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.filters.ListFilter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,443 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.gradle.MigrateLegacyDocs] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.gradle.MigrateLegacyDocs
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,449 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.gradle.PublishGuide] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.gradle.PublishGuide
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,453 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.gradle.PublishPdf] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.gradle.PublishPdf
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,465 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.macros.GspTagSourceMacro] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.macros.GspTagSourceMacro
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,469 [main] WARN startup.ContextConfig - Unable to load class [grails.doc.macros.HiddenMacro] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: grails.doc.macros.HiddenMacro
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,479 [main] WARN startup.ContextConfig - Unable to load class [org.apache.commons.validator.FormSetFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.commons.validator.FormSetFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:27,496 [main] WARN startup.ContextConfig - Unable to load class [org.apache.commons.validator.ValidatorResources$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.commons.validator.ValidatorResources$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:28,694 [main] WARN startup.ContextConfig - Unable to load class [org.aspectj.weaver.loadtime.JRockitAgent] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.aspectj.weaver.loadtime.JRockitAgent
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,551 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.svn.SVNSSHSession$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.svn.SVNSSHSession$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,555 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.svn.SVNSSHSession$2] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.svn.SVNSSHSession$2
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,704 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.PromptUserPassword4] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.PromptUserPassword4
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,708 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.PromptUserPasswordSSH] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.PromptUserPasswordSSH
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,711 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.PromptUserPasswordSSL] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.PromptUserPasswordSSL
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,715 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.PromptUserPasswordUser] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.PromptUserPasswordUser
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,723 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.SVNClientImpl$LogLevel] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.SVNClientImpl$LogLevel
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,730 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.SVNClientImpl] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.SVNClientImpl
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,733 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.javahl.SVNClientImplVersion] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.javahl.SVNClientImplVersion
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,788 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,791 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,795 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$2] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$2
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:29,799 [main] WARN startup.ContextConfig - Unable to load class [org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$3] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheManager$3
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,358 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.connection.ConnectionSpecConnectionFactoryAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.connection.ConnectionSpecConnectionFactoryAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,362 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.connection.DelegatingConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.connection.DelegatingConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,365 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.connection.NotSupportedRecordFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.connection.NotSupportedRecordFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,372 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.connection.SingleConnectionFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.connection.SingleConnectionFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,379 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.connection.TransactionAwareConnectionFactoryProxy] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.connection.TransactionAwareConnectionFactoryProxy
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,387 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.cci.core.support.CommAreaRecord] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.cci.core.support.CommAreaRecord
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,394 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.context.SpringContextResourceAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.context.SpringContextResourceAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,398 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.endpoint.AbstractMessageEndpointFactory$AbstractMessageEndpoint] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.endpoint.AbstractMessageEndpointFactory$AbstractMessageEndpoint
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,402 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.endpoint.AbstractMessageEndpointFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.endpoint.AbstractMessageEndpointFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,406 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.endpoint.GenericMessageEndpointFactory$GenericMessageEndpoint] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.endpoint.GenericMessageEndpointFactory$GenericMessageEndpoint
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,411 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.endpoint.GenericMessageEndpointFactory] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.endpoint.GenericMessageEndpointFactory
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,415 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.support.SimpleBootstrapContext] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.support.SimpleBootstrapContext
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,419 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.DelegatingWork] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.DelegatingWork
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,423 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.SimpleTaskWorkManager$DelegatingWorkAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.SimpleTaskWorkManager$DelegatingWorkAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,426 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.SimpleTaskWorkManager] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.SimpleTaskWorkManager
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,430 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.WorkManagerTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.WorkManagerTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,443 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.glassfish.GlassFishWorkManagerTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.glassfish.GlassFishWorkManagerTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,448 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.jca.work.jboss.JBossWorkManagerTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.jca.work.jboss.JBossWorkManagerTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,499 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.transaction.jta.WebSphereUowTransactionManager$UOWActionAdapter] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.transaction.jta.WebSphereUowTransactionManager$UOWActionAdapter
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:30,836 [main] WARN startup.ContextConfig - Unable to load class [org.apache.naming.factory.MailSessionFactory$1$1] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.apache.naming.factory.MailSessionFactory$1$1
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,218 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.mail.javamail.SmartMimeMessage] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.mail.javamail.SmartMimeMessage
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,222 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.commonj.DelegatingTimerListener] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.commonj.DelegatingTimerListener
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,226 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.commonj.DelegatingWork] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.commonj.DelegatingWork
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,231 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.commonj.TimerManagerTaskScheduler$ReschedulingTimerListener] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.commonj.TimerManagerTaskScheduler$ReschedulingTimerListener
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,235 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.commonj.TimerManagerTaskScheduler$TimerScheduledFuture] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.commonj.TimerManagerTaskScheduler$TimerScheduledFuture
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,239 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.scheduling.commonj.WorkManagerTaskExecutor] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.scheduling.commonj.WorkManagerTaskExecutor
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,270 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ui.freemarker.SpringTemplateLoader] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ui.freemarker.SpringTemplateLoader
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,275 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ui.velocity.CommonsLoggingLogSystem] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ui.velocity.CommonsLoggingLogSystem
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,279 [main] WARN startup.ContextConfig - Unable to load class [org.springframework.ui.velocity.SpringResourceLoader] to check against the @HandlesTypes annotation of one or more ServletContentInitializers.
Message: org.springframework.ui.velocity.SpringResourceLoader
Line | Method
->> 46 | findClass in org.grails.plugins.tomcat.ParentDelegatingClassLoader
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 306 | loadClass in java.lang.ClassLoader
| 247 | loadClass in ''
| 114 | doStart in org.grails.plugins.tomcat.InlineExplodedTomcatServer
| 102 | start . . in org.grails.plugins.tomcat.TomcatServer
| 175 | doCall in _GrailsRun_groovy$_run_closure5_closure12
| 152 | doCall . in _GrailsRun_groovy$_run_closure5
| 120 | runInline in _GrailsRun_groovy
| 66 | doCall . in _GrailsRun_groovy$_run_closure1
^ 33 | doCall in RunApp$_run_closure1
2011-12-15 17:25:31,511 [main] INFO digester.Digester - TLD skipped. URI: http://www.springframework.org/tags is already defined
2011-12-15 17:25:31,536 [main] INFO digester.Digester - TLD skipped. URI: http://shiro.apache.org/tags is already defined
2011-12-15 17:25:31,561 [main] INFO [localhost].[/myappname] - No Spring WebApplicationInitializer types detected on classpath
2011-12-15 17:25:31,584 [main] INFO http11.Http11Protocol - Starting ProtocolHandler ["http-bio-8081"]
| Server running. Browse to http://localhost:8081/myappname
@pledbrook
Copy link

Did you do a 'grails upgrade'? Does your project have web.xml template installed? And be sure to delete the 'target' directory.

BTW, what steps did you take? I assume you upgraded and existing project?

@rosenfeld
Copy link
Author

Hi Peter, thank you very much to get in touch with me.

I've just understood what the problem was.

I've copied lib, web-app, grails-app and src to a freshly created grails app and it worked!

So, I used kdiff3 until I could find the culprit. I had the attached file under scripts that was causing the problem (will add the content to this gist).

It wasn't authored by me, so I'm trying to figure out if this is necessary. I've just downloaded the same Glassfish version that is used under production so that I can test it.

Thank you for your help!

@pledbrook
Copy link

If you do upgrade to 2.0.0, check out the "Alternative Logging Libraries" section on this page: http://grails.org/doc/latest/guide/conf.html#logging

@rosenfeld
Copy link
Author

Hi Peter, I've just replicated the Glassfish environment in my local PC and it seems to be working correctly with Grails 2 without that file under scripts, so I would rather prefer to just remove it. When I get back from lunch I'll test in the QA server.

@rosenfeld
Copy link
Author

Forgot to say that it is already working in my QA server. I'm happy with the new features, specially the interactive console, although I still have to restart it after some changes (not a lot though...), but anyway, way better than before...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment