I was getting a different "no-args" error which seemed to be caused by
memory management issues.  I was able to fix it by adding some memory
parameters to the startup script (startup.bat/.sh).  These included
-XX:+UseConcMarkSweepGC
-XX:+CMSClassUnloadingEnabled -XX:+CMSClassUnloadingEnabled -Xms48m -Xmx512M
-XX:MaxPermSize=256m -XX:+UseCompressedOops you can find a post at my blog
here http://benmearns.blogspot.com/2011/10/caching-gwc-imagery.html

Good luck,

Ben

On Mon, Oct 24, 2011 at 11:30 AM, Tim Martin <
tim.mar...@ordnancesurvey.co.uk> wrote:

> Hi All
>
> It seems my holiday has turned my brain to mush and I just cannot
> understand why I am getting this error
>
> I use GWC to cache layers and have done for sometime using the same
> geowebcache.xml for well over a year
>
> I have just upgraded to 2.1.2 and have changed the web.xml to point to
> D:\tiles and placed the .xml into that folder as normal
>
> On restarting Tomcat GeoServer will not start. Here is the error message
> from the Tomcat logs along with my geowebcache.xml
>
> I have even tried this xml file with GeoServer 2.0.2 and that now fails. It
> creates the meta_jdbc_h2 but fails to create the diskquoate_page_store
>
> So something has gone wrong somewhere and I just cannot see it!!!
>
> Any ideas
>
> thanks
> Tim
>
> <?xml version="1.0" encoding="utf-8"?>
> <gwcConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>                  xsi:noNamespaceSchemaLocation="
> http://geowebcache.org/schema/1.2.2/geowebcache.xsd";
>                  xmlns="http://geowebcache.org/schema/1.2.2";>
> <version>1.2.2</version>
> <backendTimeout>300</backendTimeout>
> <cacheBypassAllowed>false</cacheBypassAllowed>
>
> <gridSets>
>
>
>
>
>  <gridSet>
>    <name>raster</name>
>    <srs><number>27700</number></srs>
>    <extent>
>      <coords>
>        <double>0</double>
>        <double>0</double>
>        <double>700000</double>
>        <double>1344000</double>
>      </coords>
>    </extent>
>    <alignTopLeft>false</alignTopLeft>
>    <resolutions>
>       <double>896.0</double> <!-- 00 3,200,000 -->
>       <double>448.0</double> <!-- 01 1,600,000 -->
>       <double>224.0</double> <!-- 02 800,000 -->
>       <double>112.0</double> <!-- 03 400,000 -->
>       <double>56.0</double>  <!-- 04 200,000 -->
>       <double>28.0</double>  <!-- 05 100,000 -->
>       <double>14.0</double>  <!-- 06 50,000 -->
>       <double>7.0</double>   <!-- 07 25,000 -->
>       <double>3.50</double>  <!-- 08 12,500 -->
>       <double>1.750</double> <!-- 09 6,250 -->
>       <double>0.875</double> <!-- 10 3,125 -->
>     </resolutions>
>    <tileHeight>250</tileHeight>
>    <tileWidth>250</tileWidth>
>  </gridSet>
>
>  </gridSets>
> <layers>
>
>
>
>
>  <wmsLayer>
>    <name>Raster</name>
>    <gridSubsets>
>      <gridSubset>
>        <gridSetName>raster</gridSetName>
>      </gridSubset>
>    </gridSubsets>
>    <wmsUrl><string>http://localhost:8080/geoserver/wms</string></wmsUrl>
>    <wmsLayers>topp:50k_14mpp</wmsLayers>
>
>  </wmsLayer>
>
> </layers>
> </gwcConfiguration>
>
>
> Oct 24, 2011 4:21:10 PM org.apache.catalina.core.ApplicationContext log
> INFO: Closing Spring root WebApplicationContext
> Oct 24, 2011 4:24:06 PM org.apache.catalina.core.ApplicationContext log
> INFO: Initializing Spring root WebApplicationContext
> Oct 24, 2011 4:24:14 PM org.apache.catalina.core.StandardContext
> listenerStart
> SEVERE: Exception sending context initialized event to listener instance of
> class org.geoserver.platform.GeoServerContextLoaderListener
> org.springframework.beans.factory.BeanCreationException: Error creating
> bean with name 'gwcFacade' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-geoserver-context.xml]:
> Cannot resolve reference to bean 'gwcTLDispatcher' while setting constructor
> argument; nested exception is
> org.springframework.beans.factory.BeanCreationException: Error creating bean
> with name 'gwcTLDispatcher' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.layer.TileLayerDispatcher]: Constructor threw
> exception; nested exception is
> org.springframework.beans.factory.BeanCreationException: Error creating bean
> with name 'gwcXmlConf!
> !
> ig' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.config.XMLConfiguration]: Constructor threw
> exception; nested exception is
> com.thoughtworks.xstream.converters.ConversionException: Cannot construct
> org.geowebcache.grid.SRS as it does not have a no-args constructor : Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275)
>        at
> org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:104)
>        at
> org.springframework.beans.factory.support.ConstructorResolver.resolveConstructorArguments(ConstructorResolver.java:495)
>        at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:162)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:925)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:835)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
>        at java.security.AccessController.doPrivileged(Native Method)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
>        at
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
>        at
> org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
>        at
> org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
>        at
> org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
>        at
> org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
>        at
> org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
>        at
> org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
>        at
> org.geoserver.platform.GeoServerContextLoaderListener.contextInitialized(GeoServerContextLoaderListener.java:18)
>        at
> org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4723)
>        at
> org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5226)
>        at
> org.apache.catalina.core.StandardContext$1.call(StandardContext.java:5221)
>        at
> java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
>        at java.util.concurrent.FutureTask.run(FutureTask.java:166)
>        at
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
>        at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
>        at java.lang.Thread.run(Thread.java:722)
> Caused by: org.springframework.beans.factory.BeanCreationException: Error
> creating bean with name 'gwcTLDispatcher' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.layer.TileLayerDispatcher]: Constructor threw
> exception; nested exception is
> org.springframework.beans.factory.BeanCreationException: Error creating bean
> with name 'gwcXmlConfig' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.config.XMLConfiguration]: Constructor thre!
> !
> w exception; nested exception is
> com.thoughtworks.xstream.converters.ConversionException: Cannot construct
> org.geowebcache.grid.SRS as it does not have a no-args constructor : Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:254)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:925)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:835)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
>        at java.security.AccessController.doPrivileged(Native Method)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
>        at
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
>        at
> org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:269)
>        ... 29 more
> Caused by: org.springframework.beans.BeanInstantiationException: Could not
> instantiate bean class [org.geowebcache.layer.TileLayerDispatcher]:
> Constructor threw exception; nested exception is
> org.springframework.beans.factory.BeanCreationException: Error creating bean
> with name 'gwcXmlConfig' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.config.XMLConfiguration]: Constructor threw
> exception; nested exception is
> com.thoughtworks.xstream.converters.ConversionException: Cannot construct
> org.geowebcache.grid.SRS as it does not have a no-args constructor : Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
>        at
> org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87)
>        at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:248)
>        ... 41 more
> Caused by: org.springframework.beans.factory.BeanCreationException: Error
> creating bean with name 'gwcXmlConfig' defined in URL
> [jar:file:/C:/Program%20Files%20(x86)/Apache%20Software%20Foundation/Tomcat%207.0/webapps/geoserver/WEB-INF/lib/gwc-2.1.2.jar!/geowebcache-core-context.xml]:
> Instantiation of bean failed; nested exception is
> org.springframework.beans.BeanInstantiationException: Could not instantiate
> bean class [org.geowebcache.config.XMLConfiguration]: Constructor threw
> exception; nested exception is
> com.thoughtworks.xstream.converters.ConversionException: Cannot construct
> org.geowebcache.grid.SRS as it does not have a no-args constructor : Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:254)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:925)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:835)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
>        at java.security.AccessController.doPrivileged(Native Method)
>        at
> org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
>        at
> org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
>        at
> org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
>        at
> org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:881)
>        at
> org.geowebcache.GeoWebCacheExtensions.extensions(GeoWebCacheExtensions.java:110)
>        at
> org.geowebcache.GeoWebCacheExtensions.extensions(GeoWebCacheExtensions.java:130)
>        at
> org.geowebcache.layer.TileLayerDispatcher.reInit(TileLayerDispatcher.java:109)
>        at
> org.geowebcache.layer.TileLayerDispatcher.<init>(TileLayerDispatcher.java:59)
>        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
> Method)
>        at
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
>        at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>        at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
>        at
> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
>        ... 43 more
> Caused by: org.springframework.beans.BeanInstantiationException: Could not
> instantiate bean class [org.geowebcache.config.XMLConfiguration]:
> Constructor threw exception; nested exception is
> com.thoughtworks.xstream.converters.ConversionException: Cannot construct
> org.geowebcache.grid.SRS as it does not have a no-args constructor : Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)
>        at
> org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:87)
>        at
> org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:248)
>        ... 64 more
> Caused by: com.thoughtworks.xstream.converters.ConversionException: Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
> : Cannot construct org.geowebcache.grid.SRS as it does not have a no-args
> constructor
> ---- Debugging information ----
> message             : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> cause-exception     :
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException
> cause-message       : Cannot construct org.geowebcache.grid.SRS as it does
> not have a no-args constructor
> class               : org.geowebcache.config.GeoWebCacheConfiguration
> required-type       : org.geowebcache.grid.SRS
> -------------------------------
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:89)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:76)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshallField(AbstractReflectionConverter.java:246)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.doUnmarshal(AbstractReflectionConverter.java:218)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshal(AbstractReflectionConverter.java:162)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:82)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:76)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:60)
>        at
> com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter.readItem(AbstractCollectionConverter.java:71)
>        at
> com.thoughtworks.xstream.converters.collections.CollectionConverter.populateCollection(CollectionConverter.java:68)
>        at
> com.thoughtworks.xstream.converters.collections.CollectionConverter.unmarshal(CollectionConverter.java:61)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:82)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:76)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshallField(AbstractReflectionConverter.java:246)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.doUnmarshal(AbstractReflectionConverter.java:218)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshal(AbstractReflectionConverter.java:162)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:82)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:76)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:60)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:137)
>        at
> com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:33)
>        at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:923)
>        at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:899)
>        at
> org.geowebcache.config.XMLConfiguration.loadConfiguration(XMLConfiguration.java:366)
>        at
> org.geowebcache.config.XMLConfiguration.<init>(XMLConfiguration.java:178)
>        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
> Method)
>        at
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
>        at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>        at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
>        at
> org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
>        ... 66 more
> Caused by:
> com.thoughtworks.xstream.converters.reflection.ObjectAccessException: Cannot
> construct org.geowebcache.grid.SRS as it does not have a no-args constructor
>        at
> com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider.newInstance(PureJavaReflectionProvider.java:71)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.instantiateNewInstance(AbstractReflectionConverter.java:308)
>        at
> com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshal(AbstractReflectionConverter.java:161)
>        at
> com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:82)
>        ... 95 more
>
> Oct 24, 2011 4:24:14 PM org.apache.catalina.core.ApplicationContext log
> INFO: Closing Spring root WebApplicationContext
> This email is only intended for the person to whom it is addressed and may
> contain confidential information. If you have received this email in error,
> please notify the sender and delete this email which must not be copied,
> distributed or disclosed to any other person.
>
> Unless stated otherwise, the contents of this email are personal to the
> writer and do not represent the official view of Ordnance Survey. Nor can
> any contract be formed on Ordnance Survey's behalf via email. We reserve the
> right to monitor emails and attachments without prior notice.
>
> Thank you for your cooperation.
>
> Ordnance Survey
> Adanac Drive
> Southampton SO16 0AS
> Tel: 08456 050505
> http://www.ordnancesurvey.co.uk
>
>
>
> ------------------------------------------------------------------------------
> The demand for IT networking professionals continues to grow, and the
> demand for specialized networking skills is growing even more rapidly.
> Take a complimentary Learning@Cisco Self-Assessment and learn
> about Cisco certifications, training, and career opportunities.
> http://p.sf.net/sfu/cisco-dev2dev
> _______________________________________________
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>



-- 
Ben Mearns
Lead Geospatial Information Consultant
IT-Client Support & Services
University of Delaware
mea...@udel.edu : 302.831.1978
------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning@Cisco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to