• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

can't find css, images and js static files

 
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, this is really a nightmare to me.
I have been trying to use spring mvc 3.1 to load static contents llike css, jpg and js files from JSP, but it keep failing witih err# 400.

Spring project file structure:
WEB-INF/config/web-application-config.xml
WEB-INF/config/webmvc-config-2.xml
addDelivery.jsp
web.xml
css/img/cal.gif
css/tcal.css
css/tcal.js

Here is my spring mvc configuration:
web-application-confg.xml:


webmvc-config-2.xml:


adDelivery.jsp file:


I don't know what is wrong with my spring project setup.
Any suggestion is very well appreciated.
Thanks
Samuel
 
Bartender
Posts: 1682
7
Android Mac OS X IntelliJ IDE Spring Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would put things in a /resources directory rather than / , This is a little more specific on where you static resources are located and it is also a fairly standard practice at this point. See this blog for another possible project directory structure,:
http://gordondickens.com/wordpress/2012/07/03/enterprise-spring-best-practices-part-1-project-config/
Do note if you choose this one that images and styles are not under WEB-INF that will cause issues.

Changing what you have a now to this might make a little more sense and is fairly common:
/src/main/resources/css
/src/main/resources/js
/src/main/resources/images

In any event the annotation that does the magic is the one you have here:



This configures a handler for static resources. In this case, requests for /resources/** are mapped to files inside the / directory.

Looking at you JSP and your directory structure I think you need to change it to this:



I am not sure why you are putting .js and images under the css directory though, seems a bit confusing to me.

If you go to the src/main/resources/css etc. approach I mentioned above change your resource mapping to the following:



Then access it like this:

 
sam White
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Thank you for your suggesiton.
It is still failed with 405: HTTP Status 405 - Request method 'GET' not supported
I have changed resources path as you suggested:
src/main/resources/img/
src/main/resources/tcal.css
src/main/resources/tcal.js

then changed link to:

in my addDeliveries.jsp file.

Here is the site access path:
http://122.106.189.123:8080/DeliveriesManager-web/

click the button "Add Delivery".
Noticed that the popup page "addDelivery.jsp" display as normal html without any css and js.
I 'd expect the field "Delivery Date" shown a js calendar for a user to pick a date, but currently there is nothing applied to this field.

Thanks
Sam
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually after the resources in the SPring xml file.

<mvc:resources location="/" mapping="/resources/**"/>

In my jsp pages to load files or stuff in I just use

<link href="/resources/styles/style.css" rel="stylesheet">
<link href="/resources/styles/template.css" rel="stylesheet">
<link href="/resources/styles/radiusgroups.css" rel="stylesheet">


Why use jstl c: in your html code. for simple loading resource files.

Mark
 
Bill Gorder
Bartender
Posts: 1682
7
Android Mac OS X IntelliJ IDE Spring Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well you said you changed your resource path to

src/main/resources/img/
src/main/resources/tcal.css
src/main/resources/tcal.js

as I suggested. What I actually suggested is:
src/main/resources/css/tcal.css
src/main/resources/js/tcal.js

Did you also change your mvc:resources tag as I suggested to


If you did then you are still not accessing them correctly.

You said you used

Using what you posted above (without the additional js folder) it should be


You can find an example on the mvc showcase project
https://github.com/SpringSource/spring-mvc-showcase/blob/master/src/main/webapp/WEB-INF/views/form.jsp

One other thing in your web.xml do you have the dispatcher servlet mapped to /?
 
sam White
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for sending me the link for the the spring showcase .
I have copied their spring xml configuration files over.
But when the addDelivery.jsp pops up, it still failed to read my jsp and css file.
I have attached my sample project here for reference.
The project is compressed by winzip and I renamed it to .png file so that I can upload it here.
To open the project, please rename it to .zip file before open it.

Very appreciated for your help.
Thanks
Sam.
DeliveriesManager.png
[Thumbnail for DeliveriesManager.png]
 
sam White
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here are the files:

servlet-context.xml:



controllers.xml:



web.xml:


DeliveriesController.java:


home.jsp:



addDelivery.jsp:



css folders structure:

src/main/webapp/resources/img/
src/main/webapp/resources/tcal.css
src/main/webapp/resources/tcal.js

Sorry about the long code.
Wish I can get this problem resolved.
thanks
Samuel
 
sam White
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is its server log file (from jboss):


22:36:34,193 DEBUG [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 2) Deployment scan of [/usr/local/users/jboss/jboss711Final/standalone/deployments] found update action [{
"operation" => "composite",
"address" => undefined,
"steps" => [
{
"operation" => "add",
"address" => [("deployment" => "DeliveriesManager-ear-1.0.ear")],
"content" => [{
"path" => "deployments/DeliveriesManager-ear-1.0.ear",
"relative-to" => "jboss.server.base.dir",
"archive" => true
}],
"persistent" => false
},
{
"operation" => "deploy",
"address" => [("deployment" => "DeliveriesManager-ear-1.0.ear")]
}
]
}]
22:36:34,218 DEBUG [org.jboss.as.controller.management-operation] (DeploymentScanner-threads - 1) Entered VERIFY stage; waiting for service container to settle
22:36:34,218 INFO [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015876: Starting deployment of "DeliveriesManager-ear-1.0.ear"
22:36:34,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "DeliveriesManager-ejb-1.0.jar"
22:36:34,950 INFO [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015876: Starting deployment of "DeliveriesManager-web-1.0.war"
22:36:36,491 DEBUG [org.jboss.web] (MSC service thread 1-2) Resolved order: [ spring-context-3.1.2.RELEASE.jar antlr-2.7.6.jar validation-api-1.0.0.GA.jar aopalliance-1.0.jar joda-time-jsptags-1.0.2.jar activation-1.1.jar spring-aop-3.1.2.RELEASE.jar spring-jdbc-3.0.1.RELEASE.jar commons-beanutils-1.8.0.jar tiles-jsp-2.1.3.jar asm-3.1.jar spring-js-resources-2.3.0.RELEASE.jar commons-logging-1.1.1.jar spring-webflow-2.3.0.RELEASE.jar hibernate-commons-annotations-3.2.0.Final.jar commons-digester-1.8.1.jar spring-security-acl-3.0.2.RELEASE.jar commons-lang-2.3.jar spring-core-3.1.2.RELEASE.jar tiles-servlet-2.1.3.jar spring-js-2.3.0.RELEASE.jar joda-time-1.6.jar jstl-1.2.jar imgscalr-lib-4.2.jar slf4j-api-1.5.8.jar spring-security-web-3.0.2.RELEASE.jar xml-apis-1.0.b2.jar dom4j-1.6.1.jar spring-security-config-3.0.2.RELEASE.jar spring-asm-3.1.2.RELEASE.jar stax-api-1.0-2.jar log4j-1.2.16.jar hibernate-core-3.5.0-Final.jar cglib-2.2.jar hibernate-validator-4.1.0.Beta1.jar spring-tx-3.0.1.RELEASE.jar javassist-3.9.0.GA.jar spring-expression-3.1.2.RELEASE.jar aspectjrt-1.6.8.jar spring-webmvc-3.1.2.RELEASE.jar spring-beans-3.1.2.RELEASE.jar hibernate-entitymanager-3.5.0-Final.jar spring-web-3.1.2.RELEASE.jar commons-fileupload-1.2.2.jar tiles-api-2.1.3.jar tiles-core-2.1.3.jar aspectjweaver-1.6.8.jar commons-collections-3.1.jar spring-context-support-3.1.2.RELEASE.jar spring-security-taglibs-3.0.2.RELEASE.jar commons-io-2.1.jar jaxb-api-2.1.jar spring-binding-2.3.0.RELEASE.jar hibernate-jpa-2.0-api-1.0.0.Final.jar spring-security-core-3.0.2.RELEASE.jar jta-1.1.jar hibernate-annotations-3.5.0-Final.jar ]
22:36:36,496 DEBUG [org.jboss.as.jpa] (MSC service thread 1-4) added javax.persistence.api:main dependency to DeliveriesManager-ear-1.0.ear
22:36:36,496 DEBUG [org.jboss.as.jpa] (MSC service thread 1-2) added javax.persistence.api:main dependency to DeliveriesManager-ejb-1.0.jar
22:36:36,496 DEBUG [org.jboss.as.jpa] (MSC service thread 1-8) added javax.persistence.api:main dependency to DeliveriesManager-web-1.0.war
22:36:36,497 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Creating moduledeployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,497 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding resource "/content/DeliveriesManager-ear-1.0.ear/lib/log4j-1.2.16.jar" to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,498 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.ejb-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,498 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.iiop-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,498 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.as.ejb3:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,499 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.as.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,499 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javax.resource.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,499 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javaee.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,500 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.hibernate.validator:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,500 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.invocation:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,500 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.as.ee:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,501 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.ws.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,501 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.ws.spi:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,501 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.picketbox:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,502 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.as.security:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,502 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javax.xml.bind.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,502 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javax.persistence.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,503 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=sun.jdk:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,503 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javax.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,504 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,504 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.vfs:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,504 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.apache.commons.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,505 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.apache.log4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,505 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.slf4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,505 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.logging.jul-to-slf4j-stub:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,506 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.omg.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,506 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=javax.rmi.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,507 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,507 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.apache.juddi.scout:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,507 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=org.jboss.as.jaxr:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,508 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-1) Adding dependency ModuleDependency [identifier=deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main, moduleLoader=Service Module Loader, export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear:main
22:36:36,508 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Creating moduledeployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,508 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Creating moduledeployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,509 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-ejb-1.0.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,509 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,509 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.ejb-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,509 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/activation-1.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,510 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.iiop-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,510 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/antlr-2.7.6.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,510 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.as.ejb3:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,511 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/aopalliance-1.0.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,511 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.as.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,511 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/asm-3.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,512 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javaee.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,512 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/aspectjrt-1.6.8.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,512 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javax.resource.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,512 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/aspectjweaver-1.6.8.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,513 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.hibernate.validator:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,513 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/cglib-2.2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,513 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.invocation:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,514 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-beanutils-1.8.0.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,514 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.as.ee:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,514 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-collections-3.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,515 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.ws.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,515 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-digester-1.8.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,515 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.ws.spi:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,516 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-fileupload-1.2.2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,516 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.picketbox:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,516 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-io-2.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,517 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.as.security:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,517 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-lang-2.3.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,517 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javax.xml.bind.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,517 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/commons-logging-1.1.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,518 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javax.persistence.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,518 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/dom4j-1.6.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,518 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=sun.jdk:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,519 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/imgscalr-lib-4.2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,519 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javax.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,519 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-annotations-3.5.0-Final.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,520 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,520 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-commons-annotations-3.2.0.Final.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,520 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.vfs:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,521 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-core-3.5.0-Final.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,521 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.apache.commons.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,521 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-entitymanager-3.5.0-Final.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,522 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.apache.log4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,522 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.0.Final.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,522 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.slf4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,523 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/hibernate-validator-4.1.0.Beta1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,523 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.logging.jul-to-slf4j-stub:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,523 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/javassist-3.9.0.GA.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,524 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.omg.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,524 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/jaxb-api-2.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,524 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=javax.rmi.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,525 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/joda-time-1.6.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,525 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,525 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/joda-time-jsptags-1.0.2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,525 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.apache.juddi.scout:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,526 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/jstl-1.2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,526 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=org.jboss.as.jaxr:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,526 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/jta-1.1.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,527 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=deployment.DeliveriesManager-ear-1.0.ear:main, moduleLoader=Service Module Loader, export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,527 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/log4j-1.2.16.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,527 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-5) Adding dependency ModuleDependency [identifier=deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main, moduleLoader=Service Module Loader, export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main
22:36:36,528 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/slf4j-api-1.5.8.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,528 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-aop-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,529 DEBUG [org.jboss.modules] (MSC service thread 1-3) Module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main defined by Service Module Loader
22:36:36,529 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-asm-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,529 DEBUG [org.jboss.modules] (MSC service thread 1-6) Module deployment.DeliveriesManager-ear-1.0.ear:main defined by Service Module Loader
22:36:36,529 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-beans-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,530 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-binding-2.3.0.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,530 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-context-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,531 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-context-support-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,531 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-core-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,532 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-expression-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,532 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-jdbc-3.0.1.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,533 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-js-2.3.0.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,533 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-js-resources-2.3.0.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,533 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-tx-3.0.1.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,534 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-security-acl-3.0.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,534 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-security-config-3.0.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,535 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-security-core-3.0.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,535 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-security-taglibs-3.0.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,536 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-security-web-3.0.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,536 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-web-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,537 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-webflow-2.3.0.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,538 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/spring-webmvc-3.1.2.RELEASE.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,539 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/stax-api-1.0-2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,539 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/tiles-api-2.1.3.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,540 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/tiles-core-2.1.3.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,540 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/tiles-jsp-2.1.3.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,540 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/tiles-servlet-2.1.3.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,541 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/validation-api-1.0.0.GA.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,541 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding resource "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/lib/xml-apis-1.0.b2.jar" to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,541 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.ejb-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,542 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.iiop-client:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,542 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.ejb3:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,543 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,543 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.resource.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,543 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javaee.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,544 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.hibernate.validator:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,544 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.invocation:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,544 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.ee:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,545 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.faces.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,545 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=com.sun.jsf-impl:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,546 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.servlet.jstl.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,546 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.web:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,546 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.ws.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,547 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.ws.spi:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=true, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,547 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.picketbox:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,548 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.security:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,548 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.xml.bind.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,548 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.persistence.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,549 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=sun.jdk:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,549 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,549 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,550 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.vfs:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,550 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.apache.commons.logging:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,551 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.apache.log4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,551 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.slf4j:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,551 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.logging.jul-to-slf4j-stub:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,552 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.omg.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,552 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=javax.rmi.api:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,552 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jacorb:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=false] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,553 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.apache.juddi.scout:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,553 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=org.jboss.as.jaxr:main, moduleLoader=local module loader @744a6cbf (roots: /usr/local/users/jboss/jboss711Final/modules), export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,554 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=deployment.DeliveriesManager-ear-1.0.ear:main, moduleLoader=Service Module Loader, export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,554 DEBUG [org.jboss.as.server.deployment] (MSC service thread 1-7) Adding dependency ModuleDependency [identifier=deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main, moduleLoader=Service Module Loader, export=false, optional=false, importServices=true] to module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main
22:36:36,559 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-8) Installing timer service for component DeliveriesManagerBean
22:36:36,559 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-8) Installing timer service for component AddressManagerBean
22:36:36,561 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-8) JNDI bindings for session bean named DeliveriesManagerBean in deployment unit subdeployment "DeliveriesManager-ejb-1.0.jar" of deployment "DeliveriesManager-ear-1.0.ear" are as follows:

java:global/DeliveriesManager-ear-1.0/DeliveriesManager-ejb-1.0/DeliveriesManagerBean!deliveries.manager.DeliveriesManagerLocal
java:app/DeliveriesManager-ejb-1.0/DeliveriesManagerBean!deliveries.manager.DeliveriesManagerLocal
java:module/DeliveriesManagerBean!deliveries.manager.DeliveriesManagerLocal
java:global/DeliveriesManager-ear-1.0/DeliveriesManager-ejb-1.0/DeliveriesManagerBean
java:app/DeliveriesManager-ejb-1.0/DeliveriesManagerBean
java:module/DeliveriesManagerBean

22:36:36,561 INFO [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-8) JNDI bindings for session bean named AddressManagerBean in deployment unit subdeployment "DeliveriesManager-ejb-1.0.jar" of deployment "DeliveriesManager-ear-1.0.ear" are as follows:

java:global/DeliveriesManager-ear-1.0/DeliveriesManager-ejb-1.0/AddressManagerBean!deliveries.manager.AddressManagerLocal
java:app/DeliveriesManager-ejb-1.0/AddressManagerBean!deliveries.manager.AddressManagerLocal
java:module/AddressManagerBean!deliveries.manager.AddressManagerLocal
java:global/DeliveriesManager-ear-1.0/DeliveriesManager-ejb-1.0/AddressManagerBean
java:app/DeliveriesManager-ejb-1.0/AddressManagerBean
java:module/AddressManagerBean

22:36:36,577 DEBUG [org.jboss.modules] (MSC service thread 1-1) Module deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main defined by Service Module Loader
22:36:36,652 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-1) Deployment unit deployment "DeliveriesManager-ear-1.0.ear" doesn't have any explicit EJB client context configured. Falling back on the default service jboss.ejb3.ejbClientContext.default EJB client context service
22:36:36,652 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-1) Registering EJB client context org.jboss.ejb.client.EJBClientContext@45ee1775 for classloader ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear:main" from Service Module Loader
22:36:36,653 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-2) Deployment unit subdeployment "DeliveriesManager-web-1.0.war" of deployment "DeliveriesManager-ear-1.0.ear" doesn't have any explicit EJB client context configured. Falling back on the default service jboss.ejb3.ejbClientContext.default EJB client context service
22:36:36,653 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-5) Deployment unit subdeployment "DeliveriesManager-ejb-1.0.jar" of deployment "DeliveriesManager-ear-1.0.ear" doesn't have any explicit EJB client context configured. Falling back on the default service jboss.ejb3.ejbClientContext.default EJB client context service
22:36:36,653 DEBUG [org.jboss.as.security] (MSC service thread 1-6) Cannot create permissions with 'null' metaData for id=DeliveriesManager-ear-1.0.ear
22:36:36,654 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-5) Registering EJB client context org.jboss.ejb.client.EJBClientContext@45ee1775 for classloader ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main" from Service Module Loader
22:36:36,653 DEBUG [org.jboss.as.ejb3.deployment.processors.EjbClientContextSetupProcessor] (MSC service thread 1-2) Registering EJB client context org.jboss.ejb.client.EJBClientContext@45ee1775 for classloader ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main" from Service Module Loader
22:36:36,654 DEBUG [org.jboss.as.ee] (MSC service thread 1-5) Configuring component class: deliveries.manager.DeliveriesManagerBean named DeliveriesManagerBean
22:36:36,655 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.EvalTag named org.springframework.web.servlet.tags.EvalTag
22:36:36,655 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tlv.JstlFmtTLV named org.apache.taglibs.standard.tlv.JstlFmtTLV
22:36:36,655 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.WhenTag named org.apache.taglibs.standard.tag.el.core.WhenTag
22:36:36,656 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.joda.time.contrib.jsptag.JodaTagLibraryValidator named org.joda.time.contrib.jsptag.JodaTagLibraryValidator
22:36:36,656 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.NestedPathTag named org.springframework.web.servlet.tags.NestedPathTag
22:36:36,656 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.FormatDateTag named org.apache.taglibs.standard.tag.el.fmt.FormatDateTag
22:36:36,656 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.LabelTag named org.springframework.web.servlet.tags.form.LabelTag
22:36:36,657 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.TransactionTag named org.apache.taglibs.standard.tag.el.sql.TransactionTag
22:36:36,657 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.DateParamTag named org.apache.taglibs.standard.tag.el.sql.DateParamTag
22:36:36,657 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.TransformTag named org.springframework.web.servlet.tags.TransformTag
22:36:36,657 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.RequestEncodingTag named org.apache.taglibs.standard.tag.el.fmt.RequestEncodingTag
22:36:36,658 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.MessageTag named org.apache.taglibs.standard.tag.el.fmt.MessageTag
22:36:36,658 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.PasswordInputTag named org.springframework.web.servlet.tags.form.PasswordInputTag
22:36:36,658 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.ParamTag named org.apache.taglibs.standard.tag.el.sql.ParamTag
22:36:36,658 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.SetBundleTag named org.apache.taglibs.standard.tag.el.fmt.SetBundleTag
22:36:36,659 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tlv.JstlSqlTLV named org.apache.taglibs.standard.tlv.JstlSqlTLV
22:36:36,659 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.filter.CharacterEncodingFilter named org.springframework.web.filter.CharacterEncodingFilter
22:36:36,659 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.InsertTemplateTag named org.apache.tiles.jsp.taglib.InsertTemplateTag
22:36:36,659 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.definition.DestroyContainerTag named org.apache.tiles.jsp.taglib.definition.DestroyContainerTag
22:36:36,660 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.security.taglibs.authz.AuthorizeTag named org.springframework.security.taglibs.authz.AuthorizeTag
22:36:36,660 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.xml.WhenTag named org.apache.taglibs.standard.tag.common.xml.WhenTag
22:36:36,660 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.RedirectTag named org.apache.taglibs.standard.tag.rt.core.RedirectTag
22:36:36,660 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV named javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV
22:36:36,661 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.joda.time.contrib.jsptag.ParseDateTimeTag named org.joda.time.contrib.jsptag.ParseDateTimeTag
22:36:36,661 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag named org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag
22:36:36,661 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.core.RemoveTag named org.apache.taglibs.standard.tag.common.core.RemoveTag
22:36:36,661 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: com.sun.faces.config.ConfigureListener named com.sun.faces.config.ConfigureListener
22:36:36,662 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.ForEachTag named org.apache.taglibs.standard.tag.rt.core.ForEachTag
22:36:36,662 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.AddListAttributeTag named org.apache.tiles.jsp.taglib.AddListAttributeTag
22:36:36,662 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.HtmlEscapeTag named org.springframework.web.servlet.tags.HtmlEscapeTag
22:36:36,662 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.OptionTag named org.springframework.web.servlet.tags.form.OptionTag
22:36:36,663 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.xml.TransformTag named org.apache.taglibs.standard.tag.rt.xml.TransformTag
22:36:36,663 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.ButtonTag named org.springframework.web.servlet.tags.form.ButtonTag
22:36:36,663 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.xml.ParseTag named org.apache.taglibs.standard.tag.rt.xml.ParseTag
22:36:36,663 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.ImportTag named org.apache.taglibs.standard.tag.el.core.ImportTag
22:36:36,664 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tlv.JstlCoreTLV named org.apache.taglibs.standard.tlv.JstlCoreTLV
22:36:36,664 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-5) Security is *not* enabled on EJB: DeliveriesManagerBean, no security interceptors will apply
22:36:36,664 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.SelectTag named org.springframework.web.servlet.tags.form.SelectTag
22:36:36,664 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.WhenTag named org.apache.taglibs.standard.tag.rt.core.WhenTag
22:36:36,664 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.DateParamTag named org.apache.taglibs.standard.tag.rt.sql.DateParamTag
22:36:36,665 DEBUG [org.jboss.as.ee] (MSC service thread 1-5) Configuring component class: deliveries.manager.AddressManagerBean named AddressManagerBean
22:36:36,665 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.core.CatchTag named org.apache.taglibs.standard.tag.common.core.CatchTag
22:36:36,665 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag named org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag
22:36:36,665 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag named org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag
22:36:36,666 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.UpdateTag named org.apache.taglibs.standard.tag.el.sql.UpdateTag
22:36:36,666 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.EscapeBodyTag named org.springframework.web.servlet.tags.EscapeBodyTag
22:36:36,666 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.ForEachTag named org.apache.taglibs.standard.tag.el.core.ForEachTag
22:36:36,666 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.ForTokensTag named org.apache.taglibs.standard.tag.el.core.ForTokensTag
22:36:36,667 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.xml.ForEachTag named org.apache.taglibs.standard.tag.common.xml.ForEachTag
22:36:36,667 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.QueryTag named org.apache.taglibs.standard.tag.el.sql.QueryTag
22:36:36,667 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag named org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag
22:36:36,667 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.security.taglibs.authz.AuthenticationTag named org.springframework.security.taglibs.authz.AuthenticationTag
22:36:36,668 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.ParamTag named org.apache.taglibs.standard.tag.rt.sql.ParamTag
22:36:36,668 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.RadioButtonTag named org.springframework.web.servlet.tags.form.RadioButtonTag
22:36:36,668 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.OptionsTag named org.springframework.web.servlet.tags.form.OptionsTag
22:36:36,668 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.core.ChooseTag named org.apache.taglibs.standard.tag.common.core.ChooseTag
22:36:36,669 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.MessageTag named org.apache.taglibs.standard.tag.rt.fmt.MessageTag
22:36:36,669 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.GetAsStringTag named org.apache.tiles.jsp.taglib.GetAsStringTag
22:36:36,669 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: javax.faces.webapp.FacetTag named javax.faces.webapp.FacetTag
22:36:36,669 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.ImportTag named org.apache.taglibs.standard.tag.rt.core.ImportTag
22:36:36,670 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.TextareaTag named org.springframework.web.servlet.tags.form.TextareaTag
22:36:36,670 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.HiddenInputTag named org.springframework.web.servlet.tags.form.HiddenInputTag
22:36:36,670 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.OutTag named org.apache.taglibs.standard.tag.rt.core.OutTag
22:36:36,670 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.ParamTag named org.apache.taglibs.standard.tag.rt.core.ParamTag
22:36:36,671 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag named org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag
22:36:36,671 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.QueryTag named org.apache.taglibs.standard.tag.rt.sql.QueryTag
22:36:36,671 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-5) Security is *not* enabled on EJB: AddressManagerBean, no security interceptors will apply
22:36:36,671 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.InsertDefinitionTag named org.apache.tiles.jsp.taglib.InsertDefinitionTag
22:36:36,671 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.definition.InitContainerTag named org.apache.tiles.jsp.taglib.definition.InitContainerTag
22:36:36,672 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.IfTag named org.apache.taglibs.standard.tag.rt.core.IfTag
22:36:36,672 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.BundleTag named org.apache.taglibs.standard.tag.el.fmt.BundleTag
22:36:36,672 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag named org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag
22:36:36,672 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.definition.DefinitionTag named org.apache.tiles.jsp.taglib.definition.DefinitionTag
22:36:36,673 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.PutAttributeTag named org.apache.tiles.jsp.taglib.PutAttributeTag
22:36:36,673 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.ForTokensTag named org.apache.taglibs.standard.tag.rt.core.ForTokensTag
22:36:36,673 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.ErrorsTag named org.springframework.web.servlet.tags.form.ErrorsTag
22:36:36,673 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.joda.time.contrib.jsptag.SetDateTimeZoneTag named org.joda.time.contrib.jsptag.SetDateTimeZoneTag
22:36:36,682 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.UpdateTag named org.apache.taglibs.standard.tag.rt.sql.UpdateTag
22:36:36,682 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.xml.ParamTag named org.apache.taglibs.standard.tag.rt.xml.ParamTag
22:36:36,682 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.BindErrorsTag named org.springframework.web.servlet.tags.BindErrorsTag
22:36:36,683 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.CheckboxTag named org.springframework.web.servlet.tags.form.CheckboxTag
22:36:36,683 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.ImportAttributeTag named org.apache.tiles.jsp.taglib.ImportAttributeTag
22:36:36,683 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.xml.ParamTag named org.apache.taglibs.standard.tag.el.xml.ParamTag
22:36:36,683 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.DispatcherServlet named org.springframework.web.servlet.DispatcherServlet
22:36:36,684 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag named org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag
22:36:36,684 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag named org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag
22:36:36,684 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.SetTag named org.apache.taglibs.standard.tag.el.core.SetTag
22:36:36,684 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.InsertAttributeTag named org.apache.tiles.jsp.taglib.InsertAttributeTag
22:36:36,685 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.MessageTag named org.springframework.web.servlet.tags.MessageTag
22:36:36,685 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.definition.SetCurrentContainerTag named org.apache.tiles.jsp.taglib.definition.SetCurrentContainerTag
22:36:36,685 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag named org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag
22:36:36,685 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.joda.time.contrib.jsptag.FormatTag named org.joda.time.contrib.jsptag.FormatTag
22:36:36,686 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.catalina.servlets.DefaultServlet named org.apache.catalina.servlets.DefaultServlet
22:36:36,686 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-7) Using pool config StrictMaxPoolConfig{name=slsb-strict-max-pool, maxPoolSize=20, timeoutUnit=MINUTES, timeout=5} to create pool for Stateless EJB DeliveriesManagerBean
22:36:36,686 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-5) Using pool config StrictMaxPoolConfig{name=slsb-strict-max-pool, maxPoolSize=20, timeoutUnit=MINUTES, timeout=5} to create pool for Stateless EJB AddressManagerBean
22:36:36,686 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.BundleTag named org.apache.taglibs.standard.tag.rt.fmt.BundleTag
22:36:36,687 DEBUG [org.jboss.as.ejb3.timerservice.TimerServiceImpl] (MSC service thread 1-4) Starting timerservice for timedObjectId: DeliveriesManager-ear-1.0.DeliveriesManager-ejb-1.0.AddressManagerBean
22:36:36,687 DEBUG [org.jboss.as.ejb3.timerservice.TimerServiceImpl] (MSC service thread 1-5) Starting timerservice for timedObjectId: DeliveriesManager-ear-1.0.DeliveriesManager-ejb-1.0.DeliveriesManagerBean
22:36:36,688 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-4) Found 0 active timers for timedObjectId: DeliveriesManager-ear-1.0.DeliveriesManager-ejb-1.0.AddressManagerBean
22:36:36,688 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.UseAttributeTag named org.apache.tiles.jsp.taglib.UseAttributeTag
22:36:36,688 DEBUG [org.jboss.as.ejb3] (MSC service thread 1-5) Found 0 active timers for timedObjectId: DeliveriesManager-ear-1.0.DeliveriesManager-ejb-1.0.DeliveriesManagerBean
22:36:36,689 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.SetTag named org.apache.taglibs.standard.tag.rt.core.SetTag
22:36:36,689 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.AddAttributeTag named org.apache.tiles.jsp.taglib.AddAttributeTag
22:36:36,689 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag named org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag
22:36:36,690 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.OutTag named org.apache.taglibs.standard.tag.el.core.OutTag
22:36:36,690 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag named org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag
22:36:36,690 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.xml.ExprTag named org.apache.taglibs.standard.tag.el.xml.ExprTag
22:36:36,690 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.xml.TransformTag named org.apache.taglibs.standard.tag.el.xml.TransformTag
22:36:36,691 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.jasper.servlet.JspServlet named org.apache.jasper.servlet.JspServlet
22:36:36,691 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.ParamTag named org.apache.taglibs.standard.tag.el.fmt.ParamTag
22:36:36,691 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.UrlTag named org.apache.taglibs.standard.tag.el.core.UrlTag
22:36:36,691 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag named org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag
22:36:36,691 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.core.OtherwiseTag named org.apache.taglibs.standard.tag.common.core.OtherwiseTag
22:36:36,692 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.ParseDateTag named org.apache.taglibs.standard.tag.el.fmt.ParseDateTag
22:36:36,692 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.CheckboxesTag named org.springframework.web.servlet.tags.form.CheckboxesTag
22:36:36,692 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.TimeZoneTag named org.apache.taglibs.standard.tag.el.fmt.TimeZoneTag
22:36:36,692 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.sql.TransactionTag named org.apache.taglibs.standard.tag.rt.sql.TransactionTag
22:36:36,693 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.RedirectTag named org.apache.taglibs.standard.tag.el.core.RedirectTag
22:36:36,693 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.security.taglibs.authz.AccessControlListTag named org.springframework.security.taglibs.authz.AccessControlListTag
22:36:36,693 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tlv.JstlXmlTLV named org.apache.taglibs.standard.tlv.JstlXmlTLV
22:36:36,693 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.InputTag named org.springframework.web.servlet.tags.form.InputTag
22:36:36,694 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.core.UrlTag named org.apache.taglibs.standard.tag.rt.core.UrlTag
22:36:36,694 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.xml.ExprTag named org.apache.taglibs.standard.tag.rt.xml.ExprTag
22:36:36,694 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.FormTag named org.springframework.web.servlet.tags.form.FormTag
22:36:36,694 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.ParamTag named org.apache.taglibs.standard.tag.rt.fmt.ParamTag
22:36:36,695 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag named org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag
22:36:36,695 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.BindTag named org.springframework.web.servlet.tags.BindTag
22:36:36,695 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: javax.servlet.jsp.jstl.tlv.ScriptFreeTLV named javax.servlet.jsp.jstl.tlv.ScriptFreeTLV
22:36:36,695 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.xml.IfTag named org.apache.taglibs.standard.tag.common.xml.IfTag
22:36:36,695 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.xml.ParseTag named org.apache.taglibs.standard.tag.el.xml.ParseTag
22:36:36,696 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.joda.time.contrib.jsptag.DateTimeZoneTag named org.joda.time.contrib.jsptag.DateTimeZoneTag
22:36:36,696 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag named org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag
22:36:36,696 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag named org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag
22:36:36,696 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.UrlTag named org.springframework.web.servlet.tags.UrlTag
22:36:36,697 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.tiles.jsp.taglib.PutListAttributeTag named org.apache.tiles.jsp.taglib.PutListAttributeTag
22:36:36,697 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.IfTag named org.apache.taglibs.standard.tag.el.core.IfTag
22:36:36,697 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.common.xml.SetTag named org.apache.taglibs.standard.tag.common.xml.SetTag
22:36:36,697 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.ParamTag named org.springframework.web.servlet.tags.ParamTag
22:36:36,697 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.ThemeTag named org.springframework.web.servlet.tags.ThemeTag
22:36:36,698 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.apache.taglibs.standard.tag.el.core.ParamTag named org.apache.taglibs.standard.tag.el.core.ParamTag
22:36:36,698 DEBUG [org.jboss.as.ee] (MSC service thread 1-2) Configuring component class: org.springframework.web.servlet.tags.form.RadioButtonsTag named org.springframework.web.servlet.tags.form.RadioButtonsTag
22:36:36,700 DEBUG [org.jboss.as.jpa] (MSC service thread 1-2) Deployment has its own persistence provider class org.hibernate.ejb.HibernatePersistence associated with classloaders [ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main" from Service Module Loader, ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear:main" from Service Module Loader, ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-ejb-1.0.jar:main" from Service Module Loader]
22:36:36,734 DEBUG [org.apache.catalina.core.ContainerBase] (MSC service thread 1-1) Add child StandardContext[/DeliveriesManager-web] StandardEngine[jboss.web].StandardHost[default-host]
22:36:36,734 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Starting /DeliveriesManager-web
22:36:36,734 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Configuring default Resources
22:36:36,735 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Processing standard container startup
22:36:36,735 DEBUG [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-1) ContextConfig: Processing START
22:36:36,736 DEBUG [org.apache.catalina.core.ContainerBase] (MSC service thread 1-1) Add child StandardWrapper[default] StandardEngine[jboss.web].StandardHost[default-host].StandardContext[/DeliveriesManager-web]
22:36:36,736 DEBUG [org.apache.catalina.core.ContainerBase] (MSC service thread 1-1) Add child StandardWrapper[jsp] StandardEngine[jboss.web].StandardHost[default-host].StandardContext[/DeliveriesManager-web]
22:36:36,736 DEBUG [org.apache.catalina.core.ContainerBase] (MSC service thread 1-1) Add child StandardWrapper[Spring MVC Dispatcher Servlet] StandardEngine[jboss.web].StandardHost[default-host].StandardContext[/DeliveriesManager-web]
22:36:36,738 DEBUG [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-1) Pipeline Configuration:
22:36:36,738 DEBUG [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-1) org.apache.catalina.core.ValveBase/1.0
22:36:36,738 DEBUG [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-1) org.apache.catalina.core.StandardContextValve/1.0
22:36:36,738 DEBUG [org.apache.catalina.startup.ContextConfig] (MSC service thread 1-1) ======================
22:36:36,738 DEBUG [org.apache.catalina.session.ManagerBase] (MSC service thread 1-1) Registering null
22:36:36,739 DEBUG [org.apache.catalina.session.ManagerBase] (MSC service thread 1-1) Start: Loading persisted sessions
22:36:36,739 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) No Spring WebApplicationInitializer types detected on classpath
22:36:36,739 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Configuring application event listeners
22:36:36,739 DEBUG [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) Configuring event listener class 'com.sun.faces.config.ConfigureListener'
22:36:36,740 DEBUG [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) Sending application start events
22:36:36,740 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) ConfigureListener.contextInitialized(/DeliveriesManager-web)
22:36:36,740 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.displayConfiguration' - DISABLED
22:36:36,740 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.validateXml' - DISABLED
22:36:36,741 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.verifyObjects' - DISABLED
22:36:36,741 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.forceLoadConfiguration' - DISABLED
22:36:36,741 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableHtmlTagLibValidator' - DISABLED
22:36:36,741 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableCoreTagLibValidator' - DISABLED
22:36:36,742 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.preferXHTML' - DISABLED
22:36:36,742 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.compressViewState' - ENABLED
22:36:36,742 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.compressJavaScript' - ENABLED
22:36:36,742 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.sendPoweredByHeader' - ENABLED
22:36:36,743 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableJSStyleHiding' - DISABLED
22:36:36,743 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableScriptsInAttributeValues' - ENABLED
22:36:36,743 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.writeStateAtFormEnd' - ENABLED
22:36:36,743 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableLazyBeanValidation' - ENABLED
22:36:36,743 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enabledLoadBundle11Compatibility' - DISABLED
22:36:36,744 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableRestoreView11Compatibility' - DISABLED
22:36:36,744 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.serializeServerState' - DISABLED
22:36:36,744 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableViewStateIdRendering' - ENABLED
22:36:36,744 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.registerConverterPropertyEditors' - DISABLED
22:36:36,745 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableGroovyScripting' - DISABLED
22:36:36,745 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER' - DISABLED
22:36:36,745 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'javax.faces.validator.DISABLE_DEFAULT_BEAN_VALIDATOR' - DISABLED
22:36:36,745 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'javax.faces.DATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE' - DISABLED
22:36:36,746 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.ENABLE_HTTP_METHOD_RESTRICTION_PHASE_LISTENER' - DISABLED
22:36:36,746 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'javax.faces.FACELETS_SKIP_COMMENTS' - DISABLED
22:36:36,746 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'javax.faces.PARTIAL_STATE_SAVING' - ENABLED
22:36:36,746 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.generateUniqueServerStateIds' - ENABLED
22:36:36,747 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.autoCompleteOffOnViewState' - ENABLED
22:36:36,747 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableThreading' - DISABLED
22:36:36,747 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.allowTextChildren' - DISABLED
22:36:36,747 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.cacheResourceModificationTimestamp' - DISABLED
22:36:36,748 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableAgressiveSessionDirtying' - DISABLED
22:36:36,748 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1021: [/DeliveriesManager-web] Configuration option 'com.sun.faces.enableMissingResourceLibraryDetection' - DISABLED
22:36:36,748 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.STATE_SAVING_METHOD' set to 'server'
22:36:36,748 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.FACELETS_SUFFIX' set to '.xhtml'
22:36:36,749 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.DEFAULT_SUFFIX' set to '.xhtml .view.xml .jsp'
22:36:36,749 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.PROJECT_STAGE' set to 'Production'
22:36:36,749 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.RESOURCE_EXCLUDES' set to '.class .jsp .jspx .properties .xhtml .groovy .groovy'
22:36:36,749 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.numberOfViewsInSession' set to '15'
22:36:36,749 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.numberOfLogicalViews' set to '15'
22:36:36,750 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.numberOfConcerrentFlashUsers' set to '5000'
22:36:36,750 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.numberOfFlashesBetweenFlashReapings' set to '5000'
22:36:36,750 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.responseBufferSize' set to '1024'
22:36:36,750 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.FACELETS_BUFFER_SIZE' set to '1024'
22:36:36,751 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.clientStateWriteBufferSize' set to '8192'
22:36:36,751 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.resourceBufferSize' set to '2048'
22:36:36,751 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.expressionFactory' set to 'com.sun.el.ExpressionFactoryImpl'
22:36:36,751 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.defaultResourceMaxAge' set to '604800000'
22:36:36,752 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.resourceUpdateCheckPeriod' set to '5'
22:36:36,752 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'com.sun.faces.disableUnicodeEscaping' set to 'auto'
22:36:36,752 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.FACELETS_REFRESH_PERIOD' set to '2'
22:36:36,752 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) JSF1018: [/DeliveriesManager-web] Configuration option 'javax.faces.VALIDATE_EMPTY_FIELDS' set to 'auto'
22:36:36,753 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) javax.naming.NameNotFoundException: env/ClientStateSavingPassword -- service jboss.naming.context.java.module."DeliveriesManager-ear-1.0"."DeliveriesManager-web-1.0".env.ClientStateSavingPassword
22:36:36,754 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) javax.naming.NameNotFoundException: env/jsf/ProjectStage -- service jboss.naming.context.java.module."DeliveriesManager-ear-1.0"."DeliveriesManager-web-1.0".env.jsf.ProjectStage
22:36:36,755 FINE [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-1) No FacesServlet found in deployment descriptor - bypassing configuration
22:36:36,756 DEBUG [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) Starting filters
22:36:36,756 DEBUG [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) Starting filter 'characterEncodingFilter'
22:36:36,777 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initializing new StandardServletEnvironment
22:36:36,779 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletConfigInitParams] PropertySource with lowest search precedence
22:36:36,779 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletContextInitParams] PropertySource with lowest search precedence
22:36:36,781 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [jndiProperties] PropertySource with lowest search precedence
22:36:36,782 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,782 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,784 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,jndiProperties,systemProperties,systemEnvironment]
22:36:36,784 DEBUG [org.springframework.web.filter.CharacterEncodingFilter] (MSC service thread 1-1) Initializing filter 'characterEncodingFilter'
22:36:36,815 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,815 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,815 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,815 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,816 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,816 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,816 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,816 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,817 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,817 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,817 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,818 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,822 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,822 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,822 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,822 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,824 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,824 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,824 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,824 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,827 DEBUG [org.springframework.web.filter.CharacterEncodingFilter] (MSC service thread 1-1) Filter 'characterEncodingFilter' configured successfully
22:36:36,833 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initializing new StandardServletEnvironment
22:36:36,833 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletConfigInitParams] PropertySource with lowest search precedence
22:36:36,833 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletContextInitParams] PropertySource with lowest search precedence
22:36:36,834 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [jndiProperties] PropertySource with lowest search precedence
22:36:36,834 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,834 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,834 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,jndiProperties,systemProperties,systemEnvironment]
22:36:36,835 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Initializing servlet 'Spring MVC Dispatcher Servlet'
22:36:36,842 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/DeliveriesManager-web]] (MSC service thread 1-1) Initializing Spring FrameworkServlet 'Spring MVC Dispatcher Servlet'
22:36:36,842 INFO [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) FrameworkServlet 'Spring MVC Dispatcher Servlet': initialization started
22:36:36,844 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Servlet with name 'Spring MVC Dispatcher Servlet' will try to create custom WebApplicationContext context of class 'org.springframework.web.context.support.XmlWebApplicationContext', using parent context [null]
22:36:36,852 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initializing new StandardServletEnvironment
22:36:36,852 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletConfigInitParams] PropertySource with lowest search precedence
22:36:36,853 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [servletContextInitParams] PropertySource with lowest search precedence
22:36:36,853 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [jndiProperties] PropertySource with lowest search precedence
22:36:36,853 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,853 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,853 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,jndiProperties,systemProperties,systemEnvironment]
22:36:36,856 INFO [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-1) Refreshing WebApplicationContext for namespace 'Spring MVC Dispatcher Servlet-servlet': startup date [Mon Oct 15 22:36:36 EST 2012]; root of context hierarchy
22:36:36,857 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Replacing [servletContextInitParams] PropertySource with [servletContextInitParams]
22:36:36,857 DEBUG [org.springframework.web.context.support.StandardServletEnvironment] (MSC service thread 1-1) Replacing [servletConfigInitParams] PropertySource with [servletConfigInitParams]
22:36:36,883 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,883 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,883 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,884 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,884 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,884 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,885 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,885 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,890 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-1) Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/servlet-context.xml]
22:36:36,891 DEBUG [org.springframework.beans.factory.xml.DefaultDocumentLoader] (MSC service thread 1-1) Using JAXP provider [__redirected.__DocumentBuilderFactory]
22:36:36,892 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Loading schema mappings from [META-INF/spring.schemas]
22:36:36,894 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Loaded schema mappings: {http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.0.xsd=org/springframework/webflow/config/spring-webflow-config-2.0.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/security/spring-security-2.0.2.xsd=org/springframework/security/config/spring-security-2.0.2.xsd, http://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd, http://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.3.xsd=org/springframework/webflow/config/spring-webflow-config-2.3.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd=org/springframework/web/servlet/config/spring-mvc-3.0.xsd, http://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd, http://www.springframework.org/schema/security/spring-security-2.0.1.xsd=org/springframework/security/config/spring-security-2.0.1.xsd, http://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd, http://www.springframework.org/schema/security/spring-security-2.0.xsd=org/springframework/security/config/spring-security-2.0.xsd, http://www.springframework.org/schema/security/spring-security-3.0.xsd=org/springframework/security/config/spring-security-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/security/spring-security-2.0.4.xsd=org/springframework/security/config/spring-security-2.0.4.xsd, http://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/webflow-config/spring-webflow-config.xsd=org/springframework/webflow/config/spring-webflow-config-2.3.xsd, http://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd, http://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd, http://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd, http://www.springframework.org/schema/security/spring-security.xsd=org/springframework/security/config/spring-security-3.0.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-3.1.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/mvc/spring-mvc.xsd=org/springframework/web/servlet/config/spring-mvc-3.1.xsd, http://www.springframework.org/schema/jdbc/spring-jdbc.xsd=org/springframework/jdbc/config/spring-jdbc-3.0.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd, http://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd, http://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd, http://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd, http://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd}
22:36:36,900 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Found XML schema [http://www.springframework.org/schema/beans/spring-beans-3.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-3.0.xsd
22:36:36,908 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Found XML schema [http://www.springframework.org/schema/context/spring-context-3.0.xsd] in classpath: org/springframework/context/config/spring-context-3.0.xsd
22:36:36,910 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Found XML schema [http://www.springframework.org/schema/tool/spring-tool-3.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-tool-3.0.xsd
22:36:36,913 DEBUG [org.springframework.beans.factory.xml.PluggableSchemaResolver] (MSC service thread 1-1) Found XML schema [http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd] in classpath: org/springframework/web/servlet/config/spring-mvc-3.0.xsd
22:36:36,918 DEBUG [org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader] (MSC service thread 1-1) Loading bean definitions
22:36:36,926 DEBUG [org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver] (MSC service thread 1-1) Loaded NamespaceHandler mappings: {http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/mvc=org.springframework.web.servlet.config.MvcNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/webflow-config=org.springframework.webflow.config.WebFlowConfigNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/jdbc=org.springframework.jdbc.config.JdbcNamespaceHandler, http://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler, http://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler, http://www.springframework.org/schema/security=org.springframework.security.config.SecurityNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}
22:36:36,936 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:36,937 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:36,937 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:36,937 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:36,939 INFO [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-1) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
22:36:36,940 INFO [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-1) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
22:36:36,944 DEBUG [org.springframework.core.io.VfsUtils] (MSC service thread 1-1) JBoss VFS packages for JBoss AS 6 found
22:36:36,947 DEBUG [org.springframework.core.io.support.PathMatchingResourcePatternResolver] (MSC service thread 1-1) Resolved location pattern [classpath*:deliveries/manager/**/*.class] to resources ["/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes/deliveries/manager/controller/DeliveriesController.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes/deliveries/manager/service/DeliveriesService.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes/deliveries/manager/service/DeliveriesServiceImpl.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-ejb-1.0.jar/deliveries/manager/AddressManagerBean.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-ejb-1.0.jar/deliveries/manager/AddressManagerLocal.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-ejb-1.0.jar/deliveries/manager/DeliveriesManagerLocal.class", "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-ejb-1.0.jar/deliveries/manager/DeliveriesManagerBean.class"]
22:36:36,971 DEBUG [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-1) Identified candidate component class: "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes/deliveries/manager/controller/DeliveriesController.class"
22:36:36,973 DEBUG [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-1) Identified candidate component class: "/content/DeliveriesManager-ear-1.0.ear/DeliveriesManager-web-1.0.war/WEB-INF/classes/deliveries/manager/service/DeliveriesServiceImpl.class"
22:36:36,999 DEBUG [org.springframework.beans.factory.xml.BeanDefinitionParserDelegate] (MSC service thread 1-1) Neither XML 'id' nor 'name' specified - using generated bean name [org.springframework.web.servlet.i18n.LocaleChangeInterceptor#0]
22:36:37,001 DEBUG [org.springframework.beans.factory.xml.BeanDefinitionParserDelegate] (MSC service thread 1-1) Neither XML 'id' nor 'name' specified - using generated bean name [org.springframework.web.servlet.view.InternalResourceViewResolver#0]
22:36:37,002 DEBUG [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-1) Loaded 25 bean definitions from location pattern [/WEB-INF/spring/servlet-context.xml]
22:36:37,002 DEBUG [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-1) Bean factory for WebApplicationContext for namespace 'Spring MVC Dispatcher Servlet-servlet': org.springframework.beans.factory.support.DefaultListableBeanFactory@11bf3b2d: defining beans [deliveriesController,deliveriesService,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,org.springframework.web.servlet.handler.MappedInterceptor#0,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.config.viewControllerHandlerMapping,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,localeResolver,messageSource,org.springframework.web.servlet.view.InternalResourceViewResolver#0,multipartResolver]; root of factory hierarchy
22:36:37,016 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
22:36:37,016 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
22:36:37,019 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
22:36:37,020 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
22:36:37,057 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
22:36:37,058 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
22:36:37,058 INFO [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-1) JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
22:36:37,058 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
22:36:37,059 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
22:36:37,059 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
22:36:37,059 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
22:36:37,059 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
22:36:37,060 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
22:36:37,060 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
22:36:37,060 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
22:36:37,061 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
22:36:37,062 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
22:36:37,062 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0'
22:36:37,062 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0'
22:36:37,062 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0' to allow for resolving potential circular references
22:36:37,063 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0'
22:36:37,064 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'messageSource'
22:36:37,064 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'messageSource'
22:36:37,069 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'messageSource' to allow for resolving potential circular references
22:36:37,080 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,080 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,081 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,081 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,081 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,081 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,081 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,082 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,082 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,082 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,082 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,082 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,083 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,083 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,083 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,083 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,084 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,084 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,084 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,084 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,087 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'messageSource'
22:36:37,087 DEBUG [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-1) Using MessageSource [org.springframework.context.support.ReloadableResourceBundleMessageSource: basenames=[/WEB-INF/messages/messages]]
22:36:37,089 DEBUG [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-1) Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@4b8baa34]
22:36:37,090 DEBUG [org.springframework.ui.context.support.UiApplicationContextUtils] (MSC service thread 1-1) Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@3e5362ab]
22:36:37,091 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@11bf3b2d: defining beans [deliveriesController,deliveriesService,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,org.springframework.web.servlet.handler.MappedInterceptor#0,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.config.viewControllerHandlerMapping,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,localeResolver,messageSource,org.springframework.web.servlet.view.InternalResourceViewResolver#0,multipartResolver,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy
22:36:37,093 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'deliveriesController'
22:36:37,094 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'deliveriesController'
22:36:37,102 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'deliveriesService'
22:36:37,103 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'deliveriesService'
22:36:37,103 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'deliveriesService' to allow for resolving potential circular references
22:36:37,105 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'deliveriesService'
22:36:37,105 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Autowiring by type from bean name 'deliveriesController' via constructor to bean named 'deliveriesService'
22:36:37,108 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'deliveriesController' to allow for resolving potential circular references
22:36:37,109 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'deliveriesController'
22:36:37,109 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'deliveriesService'
22:36:37,109 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
22:36:37,109 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
22:36:37,110 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
22:36:37,110 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
22:36:37,110 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
22:36:37,110 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
22:36:37,114 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0' to allow for resolving potential circular references
22:36:37,118 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,118 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,119 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)'
22:36:37,119 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,119 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,120 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0' to allow for resolving potential circular references
22:36:37,122 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Invoking afterPropertiesSet() on bean with name 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,136 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,138 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)'
22:36:37,139 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,139 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,139 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,139 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,140 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,140 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,140 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,140 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,141 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,141 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,141 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,141 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,141 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,142 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,142 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,142 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,142 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,142 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,143 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,143 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,143 DEBUG [org.springframework.beans.BeanUtils] (MSC service thread 1-1) No property editor [org.springframework.web.context.request.WebRequestInterceptorEditor] found for type org.springframework.web.context.request.WebRequestInterceptor according to 'Editor' suffix convention
22:36:37,145 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.handler.MappedInterceptor#0' to allow for resolving potential circular references
22:36:37,146 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,146 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,146 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,147 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.i18n.LocaleChangeInterceptor#0'
22:36:37,148 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.i18n.LocaleChangeInterceptor#0'
22:36:37,148 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,149 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,149 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,149 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,149 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,150 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,150 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,150 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,150 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,150 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,151 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,151 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,151 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,151 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,151 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,152 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,152 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,152 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,152 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,152 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,153 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.handler.MappedInterceptor#1' to allow for resolving potential circular references
22:36:37,153 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,153 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Invoking afterPropertiesSet() on bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
22:36:37,154 DEBUG [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] (MSC service thread 1-1) Looking for request mappings in application context: WebApplicationContext for namespace 'Spring MVC Dispatcher Servlet-servlet': startup date [Mon Oct 15 22:36:36 EST 2012]; root of context hierarchy
22:36:37,165 INFO [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] (MSC service thread 1-1) Mapped "{[],methods=[POST],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String deliveries.manager.controller.DeliveriesController.save(iextent.deliveries.service.deliveries.Deliveries,org.springframework.ui.ModelMap)
22:36:37,165 INFO [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] (MSC service thread 1-1) Mapped "{[/],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String deliveries.manager.controller.DeliveriesController.home(org.springframework.ui.ModelMap)
22:36:37,166 INFO [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] (MSC service thread 1-1) Mapped "{[/addDelivery],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String deliveries.manager.controller.DeliveriesController.addDelivery(iextent.deliveries.service.deliveries.Deliveries,org.springframework.ui.ModelMap)
22:36:37,169 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
22:36:37,169 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,169 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0'
22:36:37,170 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0'
22:36:37,170 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0' to allow for resolving potential circular references
22:36:37,173 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Invoking afterPropertiesSet() on bean with name 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0'
22:36:37,173 DEBUG [org.hibernate.validator.engine.resolver.DefaultTraversableResolver] (MSC service thread 1-1) Found javax.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
22:36:37,174 DEBUG [org.hibernate.validator.engine.resolver.DefaultTraversableResolver] (MSC service thread 1-1) Instantiated JPA aware TraversableResolver of type org.hibernate.validator.engine.resolver.JPATraversableResolver.
22:36:37,175 DEBUG [org.hibernate.validator.xml.ValidationXmlParser] (MSC service thread 1-1) Trying to load META-INF/validation.xml for XML based Validator configuration.
22:36:37,175 DEBUG [org.hibernate.validator.xml.ValidationXmlParser] (MSC service thread 1-1) No META-INF/validation.xml found. Using annotation based configuration only
22:36:37,175 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0'
22:36:37,175 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
22:36:37,176 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
22:36:37,185 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0' to allow for resolving potential circular references
22:36:37,191 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#1'
22:36:37,194 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
22:36:37,195 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0'
22:36:37,195 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#1'
22:36:37,196 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#2'
22:36:37,198 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#2'
22:36:37,198 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#3'
22:36:37,202 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#3'
22:36:37,202 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#4'
22:36:37,204 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#4'
22:36:37,204 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#5'
22:36:37,207 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#5'
22:36:37,207 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#6'
22:36:37,212 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#6'
22:36:37,212 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#7'
22:36:37,215 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#7'
22:36:37,217 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Invoking afterPropertiesSet() on bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
22:36:37,230 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
22:36:37,230 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,230 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
22:36:37,230 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
22:36:37,235 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0' to allow for resolving potential circular references
22:36:37,238 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#8'
22:36:37,238 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#8'
22:36:37,238 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#9'
22:36:37,240 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#9'
22:36:37,240 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#10'
22:36:37,241 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#10'
22:36:37,241 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#11'
22:36:37,241 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#11'
22:36:37,241 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#12'
22:36:37,244 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#12'
22:36:37,244 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#13'
22:36:37,244 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#13'
22:36:37,245 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Invoking afterPropertiesSet() on bean with name 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
22:36:37,245 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
22:36:37,245 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
22:36:37,246 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
22:36:37,246 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0' to allow for resolving potential circular references
22:36:37,247 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
22:36:37,247 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
22:36:37,248 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
22:36:37,248 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0' to allow for resolving potential circular references
22:36:37,249 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
22:36:37,250 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
22:36:37,250 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
22:36:37,251 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' to allow for resolving potential circular references
22:36:37,254 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,254 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,254 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Looking for URL mappings in application context: WebApplicationContext for namespace 'Spring MVC Dispatcher Servlet-servlet': startup date [Mon Oct 15 22:36:36 EST 2012]; root of context hierarchy
22:36:37,255 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'deliveriesController': no URL paths identified
22:36:37,255 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'deliveriesService': no URL paths identified
22:36:37,255 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor': no URL paths identified
22:36:37,255 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
22:36:37,255 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
22:36:37,256 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
22:36:37,256 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': no URL paths identified
22:36:37,256 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0': no URL paths identified
22:36:37,256 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0': no URL paths identified
22:36:37,257 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0': no URL paths identified
22:36:37,257 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.handler.MappedInterceptor#0': no URL paths identified
22:36:37,257 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0': no URL paths identified
22:36:37,257 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0': no URL paths identified
22:36:37,257 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0': no URL paths identified
22:36:37,258 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping': no URL paths identified
22:36:37,258 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter': no URL paths identified
22:36:37,258 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter': no URL paths identified
22:36:37,258 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.config.viewControllerHandlerMapping': no URL paths identified
22:36:37,259 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.handler.MappedInterceptor#1': no URL paths identified
22:36:37,259 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0': no URL paths identified
22:36:37,259 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0': no URL paths identified
22:36:37,259 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'localeResolver': no URL paths identified
22:36:37,259 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'messageSource': no URL paths identified
22:36:37,260 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.web.servlet.view.InternalResourceViewResolver#0': no URL paths identified
22:36:37,260 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'multipartResolver': no URL paths identified
22:36:37,260 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0': no URL paths identified
22:36:37,260 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'environment': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'systemProperties': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'systemEnvironment': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'servletContext': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'servletConfig': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'contextParameters': no URL paths identified
22:36:37,261 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'contextAttributes': no URL paths identified
22:36:37,262 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'importRegistry': no URL paths identified
22:36:37,262 DEBUG [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping] (MSC service thread 1-1) Rejected bean name 'applicationEventMulticaster': no URL paths identified
22:36:37,262 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
22:36:37,262 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
22:36:37,263 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
22:36:37,263 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' to allow for resolving potential circular references
22:36:37,264 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
22:36:37,264 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
22:36:37,264 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
22:36:37,264 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' to allow for resolving potential circular references
22:36:37,265 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
22:36:37,265 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.config.viewControllerHandlerMapping'
22:36:37,266 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.config.viewControllerHandlerMapping'
22:36:37,266 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.config.viewControllerHandlerMapping' to allow for resolving potential circular references
22:36:37,269 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,269 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,270 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,270 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,270 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,270 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,270 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,271 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,271 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,271 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,271 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,271 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,272 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,272 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,272 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,272 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,273 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,273 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,273 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,273 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,273 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean '(inner bean)#14'
22:36:37,276 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean '(inner bean)#14'
22:36:37,277 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,277 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,278 INFO [org.springframework.web.servlet.handler.SimpleUrlHandlerMapping] (MSC service thread 1-1) Root mapping to handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
22:36:37,278 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.config.viewControllerHandlerMapping'
22:36:37,278 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,278 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
22:36:37,279 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
22:36:37,279 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0' to allow for resolving potential circular references
22:36:37,281 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,282 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,282 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,282 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,282 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,282 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,283 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,283 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,283 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,283 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,283 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,284 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,284 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,284 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,284 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,284 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,285 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,285 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,285 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,285 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,286 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
22:36:37,286 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
22:36:37,286 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
22:36:37,286 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0' to allow for resolving potential circular references
22:36:37,287 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#0'
22:36:37,287 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.MappedInterceptor#1'
22:36:37,288 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
22:36:37,288 INFO [org.springframework.web.servlet.handler.SimpleUrlHandlerMapping] (MSC service thread 1-1) Mapped URL path [/resources/**] onto handler 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
22:36:37,288 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
22:36:37,288 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'localeResolver'
22:36:37,289 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'localeResolver'
22:36:37,290 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'localeResolver' to allow for resolving potential circular references
22:36:37,292 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'localeResolver'
22:36:37,292 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'messageSource'
22:36:37,292 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
22:36:37,292 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
22:36:37,296 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'org.springframework.web.servlet.view.InternalResourceViewResolver#0' to allow for resolving potential circular references
22:36:37,299 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,299 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,299 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,300 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,300 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,300 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,300 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,301 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,301 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,301 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,301 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,301 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,302 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,302 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,302 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,302 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,303 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,303 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,303 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,303 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,303 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
22:36:37,304 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating shared instance of singleton bean 'multipartResolver'
22:36:37,304 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'multipartResolver'
22:36:37,310 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Eagerly caching bean 'multipartResolver' to allow for resolving potential circular references
22:36:37,312 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,312 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,313 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,313 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,313 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,313 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,314 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,314 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,314 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,314 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,315 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,315 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,315 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,315 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,316 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,316 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,316 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initializing new StandardEnvironment
22:36:37,316 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemProperties] PropertySource with lowest search precedence
22:36:37,317 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Adding [systemEnvironment] PropertySource with lowest search precedence
22:36:37,317 DEBUG [org.springframework.core.env.StandardEnvironment] (MSC service thread 1-1) Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
22:36:37,319 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'multipartResolver'
22:36:37,319 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0'
22:36:37,321 DEBUG [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-1) Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@1fb7500]
22:36:37,321 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'lifecycleProcessor'
22:36:37,322 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'multipartResolver'
22:36:37,322 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Using MultipartResolver [org.springframework.web.multipart.commons.CommonsMultipartResolver@247de4f1]
22:36:37,323 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'localeResolver'
22:36:37,323 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Using LocaleResolver [org.springframework.web.servlet.i18n.CookieLocaleResolver@45419cee]
22:36:37,324 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver'
22:36:37,325 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver'
22:36:37,325 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Unable to locate ThemeResolver with name 'themeResolver': using default [org.springframework.web.servlet.theme.FixedThemeResolver@78f394a2]
22:36:37,326 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
22:36:37,326 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
22:36:37,327 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.config.viewControllerHandlerMapping'
22:36:37,327 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
22:36:37,327 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
22:36:37,328 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
22:36:37,328 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
22:36:37,329 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
22:36:37,329 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
22:36:37,329 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
22:36:37,330 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
22:36:37,331 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
22:36:37,332 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@44f16ddc]
22:36:37,332 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Returning cached instance of singleton bean 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
22:36:37,333 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Creating instance of bean 'org.springframework.web.servlet.support.SessionFlashMapManager'
22:36:37,335 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-1) Finished creating instance of bean 'org.springframework.web.servlet.support.SessionFlashMapManager'
22:36:37,336 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Unable to locate FlashMapManager with name 'flashMapManager': using default [org.springframework.web.servlet.support.SessionFlashMapManager@33f91758]
22:36:37,336 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Published WebApplicationContext of servlet 'Spring MVC Dispatcher Servlet' as ServletContext attribute with name [org.springframework.web.servlet.FrameworkServlet.CONTEXT.Spring MVC Dispatcher Servlet]
22:36:37,336 INFO [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) FrameworkServlet 'Spring MVC Dispatcher Servlet': initialization completed in 494 ms
22:36:37,337 DEBUG [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-1) Servlet 'Spring MVC Dispatcher Servlet' configured successfully
22:36:37,337 DEBUG [org.apache.jasper.compiler.JspRuntimeContext] (MSC service thread 1-1) Parent class loader is: ModuleClassLoader for Module "deployment.DeliveriesManager-ear-1.0.ear.DeliveriesManager-web-1.0.war:main" from Service Module Loader
22:36:37,338 DEBUG [org.apache.jasper.servlet.JspServlet] (MSC service thread 1-1) Scratch dir for the JSP engine is: /usr/local/users/jboss/jboss711Final/standalone/tmp/work/jboss.web/default-host/DeliveriesManager-web
22:36:37,338 DEBUG [org.apache.jasper.servlet.JspServlet] (MSC service thread 1-1) IMPORTANT: Do not modify the generated servlets
22:36:37,338 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Configuring application event listeners
22:36:37,338 DEBUG [org.apache.catalina.core.StandardContext] (MSC service thread 1-1) Starting completed
22:36:37,338 INFO [org.jboss.web] (MSC service thread 1-1) JBAS018210: Registering web context: /DeliveriesManager-web
22:36:37,351 INFO [org.jboss.as.server] (DeploymentScanner-threads - 1) JBAS018559: Deployed "DeliveriesManager-ear-1.0.ear"
22:37:06,091 DEBUG [org.apache.cat



Best regards
Sam
 
Bartender
Posts: 669
15
TypeScript Fedora
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had some problems with this before.  If you have all of the config setup and the structure is right then, what you should try is to clean you project.  Something to do with the file structure.  After I did that it worked perfectly. Just make sure you have the structure right according to the spring docs.  
 
Al Hobbs
Bartender
Posts: 669
15
TypeScript Fedora
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a project now that is using the path: src/main/resources/static/(js,css,whatever)

I mapped the resources to /resources/** so I don't have to permit all for every single one in the security.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic