Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ApplicationContext.xml:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:jee="http://www.springframework.org/schema/jee"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/tx
- http://www.springframework.org/schema/tx/spring-tx.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop.xsd
- http://www.springframework.org/schema/jee
- http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">
- <bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
- <property name="configLocation">
- <value>classpath:hibernate.cfg.xml</value>
- </property>
- </bean>
- <bean id ="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory" ref="mySessionFactory"/>
- </bean>
- <tx:annotation-driven transaction-manager="txManager"/>
- </beans>
- =========================================================================================================================
- dispatcher-servlet.xml:
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:p="http://www.springframework.org/schema/p"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
- <context:annotation-config/>
- <context:component-scan base-package="guestbook"/>
- <bean id="viewResolver"
- class="org.springframework.web.servlet.view.InternalResourceViewResolver"
- p:prefix="/WEB-INF/jsp/"
- p:suffix=".jsp" />
- </beans>
- =========================================================================================================================
- hibernate.cfg:
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
- <hibernate-configuration>
- <session-factory>
- <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
- <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
- <property name="hibernate.connection.url">jdbc:mysql://localhost/gb</property>
- <property name="hibernate.connection.username">root</property>
- <property name="hibernate.connection.password">******</property>
- <property name="hibernate.connection.autocommit">false</property>
- <property name="hibernate.hbm2ddl.auto">create-drop</property>
- <property name="hibernate.show_sql">true</property>
- <mapping class="guestbook.components.Comment"/>
- </session-factory>
- </hibernate-configuration>
- =========================================================================================================================
- log4j.xml:
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
- <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
- <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern"
- value="%d{ABSOLUTE} %5p %c{1}:%L - %m%n"/>
- </layout>
- </appender>
- <logger name="org.springframework">
- <level value="DEBUG"/>
- </logger>
- <logger name="org.hibernate">
- <level value="INFO"/>
- </logger>
- <root>
- <level value="TRACE"/>
- <appender-ref ref="CONSOLE"/>
- </root>
- </log4j:configuration>
- =========================================================================================================================
- ICommentDao:
- package guestbook.components.dao;
- import guestbook.components.Comment;
- import java.util.List;
- public interface ICommentDao {
- public void create(Comment comment);
- public void delete(Comment comment);
- public Comment read(Integer id);
- public void update(Comment comment);
- public List<Comment> getAll();
- }
- CommentDao:
- package guestbook.components.dao;
- import guestbook.components.Comment;
- import java.sql.SQLException;
- import java.util.List;
- import org.hibernate.HibernateException;
- import org.hibernate.Query;
- import org.hibernate.Session;
- import org.hibernate.SessionFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.orm.hibernate3.HibernateCallback;
- import org.springframework.orm.hibernate3.HibernateTemplate;
- import org.springframework.stereotype.Repository;
- import org.springframework.transaction.PlatformTransactionManager;
- import org.springframework.transaction.support.TransactionSynchronizationManager;
- @Repository
- public class CommentDao implements ICommentDao {
- private HibernateTemplate hibernateTemplate;
- public CommentDao() {
- }
- @Autowired
- public CommentDao(SessionFactory sessionFactory, PlatformTransactionManager transactionManager) {
- hibernateTemplate = new HibernateTemplate(sessionFactory);
- }
- public void create(final Comment comment) {
- System.out.println(TransactionSynchronizationManager.isActualTransactionActive());
- hibernateTemplate.save(comment);
- }
- public void delete(Comment comment) {
- hibernateTemplate.delete(comment);
- }
- public Comment read(Integer id) {
- return (Comment) hibernateTemplate.get(Comment.class, id);
- }
- public void update(Comment comment) {
- hibernateTemplate.update(comment);
- }
- public List<Comment> getAll() {
- return (List<Comment>) hibernateTemplate.execute(new HibernateCallback() {
- public Object doInHibernate(Session session) throws HibernateException, SQLException {
- Query query = (Query) session.createQuery("from Comment");
- List<Comment> result = query.list();
- return result;
- }
- });
- }
- }
- =========================================================================================================================
- package guestbook.components.service;
- import guestbook.components.Comment;
- import java.util.List;
- import org.springframework.transaction.annotation.Transactional;
- public interface ICommentService {
- @@ @Transactional
- public void create(Comment comment);
- public void delete(Comment comment);
- public Comment read(Integer id);
- public void update(Comment comment);
- public List<Comment> getAll();
- }
- package guestbook.components.service;
- import guestbook.components.Comment;
- import guestbook.components.dao.ICommentDao;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- @Service
- public class CommentService implements ICommentService {
- @Autowired private ICommentDao commentDao;
- public void create(Comment comment) {
- commentDao.create(comment);
- }
- public void delete(Comment comment) {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- public Comment read(Integer id) {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- public void update(Comment comment) {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- public List<Comment> getAll() {
- throw new UnsupportedOperationException("Not supported yet.");
- }
- }
- =========================================================================================================================
- package guestbook.controller;
- import guestbook.components.Comment;
- import guestbook.components.service.ICommentService;
- import java.util.Date;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- @Controller
- @RequestMapping("/index.do")
- public class CommentsListController {
- @Autowired
- private ICommentService commentService;
- @RequestMapping(method = RequestMethod.GET)
- public String prepareForm() {
- Comment comment = new Comment("Test", "Text text", new Date(System.currentTimeMillis()), "Nuru");
- commentService.create(comment);
- return "index";
- }
- }
- =========================================================================================================================
- Ну и сам аутпут:
- PWC1412: WebModule[/gb] ServletContext.log():Destroying Spring FrameworkServlet 'dispatcher'
- 10:21:52,125 INFO XmlWebApplicationContext:822 - Closing org.springframework.web.context.support.XmlWebApplicationContext@622574: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:21:04 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@11b7c86
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@622574]: org.springframework.context.event.ContextClosedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@622574: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:21:04 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]: org.springframework.context.event.ContextClosedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@622574: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:21:04 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@622574]: org.springframework.context.event.ContextStoppedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@622574: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:21:04 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]: org.springframework.context.event.ContextStoppedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@622574: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:21:04 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]
- 10:21:52,125 INFO DefaultListableBeanFactory:340 - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1f4c74f: defining beans [org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,commentDao,commentService,commentsListController,viewResolver]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@196173
- 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'viewResolver'
- 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentsListController'
- 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'commentService': [commentsListController]
- 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentService'
- 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'commentDao': [commentService]
- 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentDao'
- 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
- PWC1412: WebModule[/gb] ServletContext.log():Closing Spring root WebApplicationContext
- 10:21:52,125 INFO XmlWebApplicationContext:822 - Closing org.springframework.web.context.support.XmlWebApplicationContext@11b7c86: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:03 MSD 2009]; root of context hierarchy
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]: org.springframework.context.event.ContextClosedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@11b7c86: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:03 MSD 2009]; root of context hierarchy]
- 10:21:52,125 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@11b7c86]: org.springframework.context.event.ContextStoppedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@11b7c86: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:03 MSD 2009]; root of context hierarchy]
- 10:21:52,125 INFO DefaultListableBeanFactory:340 - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@196173: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'mySessionFactory': [txManager]
- 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'txManager': [(inner bean)]
- 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean '(inner bean)': [(inner bean), org.springframework.transaction.config.internalTransactionAdvisor]
- 10:21:52,125 DEBUG DisposableBeanAdapter:151 - Invoking destroy() on bean with name 'mySessionFactory'
- 10:21:52,125 INFO AnnotationSessionFactoryBean:246 - Closing Hibernate SessionFactory
- 10:21:52,125 INFO SessionFactoryImpl:769 - closing
- 10:21:52,125 INFO DriverManagerConnectionProvider:147 - cleaning up connection pool: jdbc:mysql://localhost/gb
- 10:21:52,171 INFO SchemaExport:154 - Running hbm2ddl schema export
- 10:21:52,171 INFO SchemaExport:179 - exporting generated schema to database
- 10:21:52,187 INFO SchemaExport:196 - schema export complete
- classLoader = WebappClassLoader
- delegate: true
- repositories:
- /WEB-INF/classes/
- ----------> Parent Classloader:
- EJBClassLoader :
- urlSet = []
- doneCalled = false
- Parent -> java.net.URLClassLoader@18041e0
- SharedSecrets.getJavaNetAccess()=java.net.URLClassLoader$7@1581448
- deployed with moduleid = GuestBook
- PWC1412: WebModule[/gb] ServletContext.log():Initializing Spring root WebApplicationContext
- 10:21:59,781 INFO ContextLoader:180 - Root WebApplicationContext: initialization started
- 10:21:59,812 INFO XmlWebApplicationContext:400 - Refreshing org.springframework.web.context.support.XmlWebApplicationContext@14c4f70: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:59 MSD 2009]; root of context hierarchy
- 10:21:59,843 DEBUG ClassUtils:164 - Class [org.apache.commons.collections.map.CaseInsensitiveMap] or one of its dependencies is not present: java.lang.ClassNotFoundException: org.apache.commons.collections.map.CaseInsensitiveMap
- 10:21:59,843 DEBUG ClassUtils:164 - Class [edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap] or one of its dependencies is not present: java.lang.ClassNotFoundException: edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap
- 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:21:59,875 INFO XmlBeanDefinitionReader:303 - Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
- 10:21:59,875 DEBUG DefaultDocumentLoader:75 - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
- 10:21:59,875 DEBUG PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/beans/spring-beans.xsd]
- 10:21:59,875 DEBUG PluggableSchemaResolver:125 - Loading schema mappings from [META-INF/spring.schemas]
- 10:21:59,875 DEBUG PluggableSchemaResolver:131 - Loaded schema mappings: {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/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-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/jms/spring-jms-2.5.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-2.5.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/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.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/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-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/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.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/jms/spring-jms.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-2.5.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/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.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/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.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/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd}
- 10:21:59,890 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/beans/spring-beans.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-2.5.xsd
- 10:21:59,890 DEBUG PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/tx/spring-tx.xsd]
- 10:21:59,890 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/tx/spring-tx.xsd] in classpath: org/springframework/transaction/config/spring-tx-2.5.xsd
- 10:21:59,890 DEBUG DefaultBeanDefinitionDocumentReader:84 - Loading bean definitions
- 10:21:59,921 DEBUG DefaultNamespaceHandlerResolver:153 - Loaded mappings [{http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jms=org.springframework.jms.config.JmsNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}]
- 10:21:59,937 DEBUG ClassUtils:164 - Class [weblogic.transaction.UserTransaction] or one of its dependencies is not present: java.lang.ClassNotFoundException: weblogic.transaction.UserTransaction
- 10:21:59,937 DEBUG ClassUtils:164 - Class [com.ibm.wsspi.uow.UOWManager] or one of its dependencies is not present: java.lang.ClassNotFoundException: com.ibm.wsspi.uow.UOWManager
- 10:21:59,937 DEBUG ClassUtils:164 - Class [oracle.j2ee.transaction.OC4JTransactionManager] or one of its dependencies is not present: java.lang.ClassNotFoundException: oracle.j2ee.transaction.OC4JTransactionManager
- 10:21:59,953 DEBUG XmlBeanDefinitionReader:160 - Loaded 4 bean definitions from location pattern [/WEB-INF/applicationContext.xml]
- 10:21:59,953 INFO XmlWebApplicationContext:415 - Bean factory for application context [org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]: org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936
- 10:21:59,953 DEBUG XmlWebApplicationContext:419 - 4 beans defined in org.springframework.web.context.support.XmlWebApplicationContext@14c4f70: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:59 MSD 2009]; root of context hierarchy
- 10:21:59,968 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
- 10:21:59,984 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator' with merged definition [Root bean: class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:00,000 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.aop.config.internalAutoProxyCreator' to allow for resolving potential circular references
- 10:22:00,000 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
- 10:22:00,015 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'advisorAdapterRegistry' of type [org.springframework.aop.framework.adapter.AdvisorAdapterRegistry]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'applyCommonInterceptorsFirst' of type [boolean]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'customTargetSourceCreators' of type [[Lorg.springframework.aop.framework.autoproxy.TargetSourceCreator;]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeProxy' of type [boolean]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'frozen' of type [boolean]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptorNames' of type [[Ljava.lang.String;]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'opaque' of type [boolean]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'optimize' of type [boolean]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
- 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'proxyTargetClass' of type [boolean]
- 10:22:00,031 DEBUG XmlWebApplicationContext:636 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@4b38f9]
- 10:22:00,031 DEBUG XmlWebApplicationContext:660 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@897819]
- 10:22:00,031 DEBUG UiApplicationContextUtils:85 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@12be3d9]
- 10:22:00,031 INFO DefaultListableBeanFactory:398 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:22:00,031 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'mySessionFactory'
- 10:22:00,031 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'mySessionFactory' with merged definition [Root bean: class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in ServletContext resource [/WEB-INF/applicationContext.xml]]
- PWC1635: Illegal access: this web application instance has been stopped already (the eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact)
- 10:22:00,500 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'mySessionFactory' to allow for resolving potential circular references
- 10:22:00,500 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean]
- 10:22:00,500 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean]
- 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'annotatedClasses' of type [[Ljava.lang.Class;]
- 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'annotatedPackages' of type [[Ljava.lang.String;]
- 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
- 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'cacheableMappingLocations' of type [[Lorg.springframework.core.io.Resource;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'collectionCacheStrategies' of type [java.util.Properties]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configLocation' of type [org.springframework.core.io.Resource]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configLocations' of type [[Lorg.springframework.core.io.Resource;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configuration' of type [org.hibernate.cfg.Configuration]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configurationClass' of type [java.lang.Class]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'dataSource' of type [javax.sql.DataSource]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityCacheStrategies' of type [java.util.Properties]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptor' of type [org.hibernate.Interceptor]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'eventListeners' of type [java.util.Map]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeTransactionAwareSessionFactory' of type [boolean]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'filterDefinitions' of type [[Lorg.hibernate.engine.FilterDefinition;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'hibernateProperties' of type [java.util.Properties]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'jdbcExceptionTranslator' of type [org.springframework.jdbc.support.SQLExceptionTranslator]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'jtaTransactionManager' of type [javax.transaction.TransactionManager]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'lobHandler' of type [org.springframework.jdbc.support.lob.LobHandler]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingDirectoryLocations' of type [[Lorg.springframework.core.io.Resource;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingJarLocations' of type [[Lorg.springframework.core.io.Resource;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingLocations' of type [[Lorg.springframework.core.io.Resource;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingResources' of type [[Ljava.lang.String;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'namingStrategy' of type [org.hibernate.cfg.NamingStrategy]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'object' of type [java.lang.Object]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'objectType' of type [java.lang.Class]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'schemaUpdate' of type [boolean]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'singleton' of type [boolean]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'typeDefinitions' of type [[Lorg.springframework.orm.hibernate3.TypeDefinitionBean;]
- 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'useTransactionAwareDataSource' of type [boolean]
- 10:22:00,515 DEBUG TypeConverterDelegate:314 - Converting String to [interface org.springframework.core.io.Resource] using property editor [org.springframework.core.io.ResourceEditor@13cf8b2]
- 10:22:00,531 INFO Version:15 - Hibernate Annotations 3.3.1.GA
- 10:22:00,531 INFO Environment:514 - Hibernate 3.2.5
- 10:22:00,546 INFO Environment:547 - hibernate.properties not found
- 10:22:00,546 INFO Environment:681 - Bytecode provider name : cglib
- 10:22:00,546 INFO Environment:598 - using JDK 1.4 java.sql.Timestamp handling
- 10:22:00,609 INFO Configuration:1441 - configuring from url: file:/C:/Documents%20and%20Settings/Администратор/Мои%20документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/hibernate.cfg.xml
- 10:22:00,656 INFO Configuration:1541 - Configured SessionFactory: null
- 10:22:00,656 INFO AnnotationSessionFactoryBean:689 - Building new Hibernate SessionFactory
- 10:22:00,703 INFO AnnotationBinder:418 - Binding entity from annotated class: guestbook.components.Comment
- 10:22:00,734 INFO EntityBinder:424 - Bind entity guestbook.components.Comment on table Comment
- 10:22:00,765 INFO AnnotationConfiguration:365 - Hibernate Validator not found: ignoring
- 10:22:00,828 INFO DriverManagerConnectionProvider:41 - Using Hibernate built-in connection pool (not for production use!)
- 10:22:00,828 INFO DriverManagerConnectionProvider:42 - Hibernate connection pool size: 20
- 10:22:00,828 INFO DriverManagerConnectionProvider:45 - autocommit mode: false
- 10:22:00,828 INFO DriverManagerConnectionProvider:80 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/gb
- 10:22:00,828 INFO DriverManagerConnectionProvider:86 - connection properties: {user=root, password=****, autocommit=false, release_mode=on_close}
- 10:22:00,843 INFO SettingsFactory:89 - RDBMS: MySQL, version: 6.0.9-alpha-community
- 10:22:00,843 INFO SettingsFactory:90 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
- 10:22:00,843 INFO Dialect:152 - Using dialect: org.hibernate.dialect.MySQLDialect
- 10:22:00,859 INFO TransactionFactoryFactory:31 - Using default transaction strategy (direct JDBC transactions)
- 10:22:00,859 INFO TransactionManagerLookupFactory:33 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
- 10:22:00,859 INFO SettingsFactory:143 - Automatic flush during beforeCompletion(): enabled
- 10:22:00,859 INFO SettingsFactory:147 - Automatic session close at end of transaction: disabled
- 10:22:00,859 INFO SettingsFactory:154 - JDBC batch size: 15
- 10:22:00,859 INFO SettingsFactory:157 - JDBC batch updates for versioned data: disabled
- 10:22:00,859 INFO SettingsFactory:162 - Scrollable result sets: enabled
- 10:22:00,859 INFO SettingsFactory:170 - JDBC3 getGeneratedKeys(): enabled
- 10:22:00,859 INFO SettingsFactory:178 - Connection release mode: on_close
- 10:22:00,859 INFO SettingsFactory:202 - Maximum outer join fetch depth: 2
- 10:22:00,859 INFO SettingsFactory:205 - Default batch fetch size: 1
- 10:22:00,859 INFO SettingsFactory:209 - Generate SQL with comments: disabled
- 10:22:00,859 INFO SettingsFactory:213 - Order SQL updates by primary key: disabled
- 10:22:00,859 INFO SettingsFactory:217 - Order SQL inserts for batching: disabled
- 10:22:00,859 INFO SettingsFactory:386 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
- 10:22:00,875 INFO ASTQueryTranslatorFactory:24 - Using ASTQueryTranslatorFactory
- 10:22:00,875 INFO SettingsFactory:225 - Query language substitutions: {}
- 10:22:00,875 INFO SettingsFactory:230 - JPA-QL strict compliance: disabled
- 10:22:00,875 INFO SettingsFactory:235 - Second-level cache: enabled
- 10:22:00,875 INFO SettingsFactory:239 - Query cache: disabled
- 10:22:00,875 INFO SettingsFactory:373 - Cache provider: org.hibernate.cache.NoCacheProvider
- 10:22:00,875 INFO SettingsFactory:254 - Optimize cache for minimal puts: disabled
- 10:22:00,875 INFO SettingsFactory:263 - Structured second-level cache entries: disabled
- 10:22:00,875 INFO SettingsFactory:283 - Echoing all SQL to stdout
- 10:22:00,875 INFO SettingsFactory:290 - Statistics: disabled
- 10:22:00,875 INFO SettingsFactory:294 - Deleted entity synthetic identifier rollback: disabled
- 10:22:00,875 INFO SettingsFactory:309 - Default entity-mode: pojo
- 10:22:00,875 INFO SettingsFactory:313 - Named query checking : enabled
- 10:22:00,906 INFO SessionFactoryImpl:161 - building session factory
- 10:22:01,109 INFO SessionFactoryObjectFactory:82 - Not binding factory to JNDI, no JNDI name configured
- 10:22:01,125 INFO SchemaExport:154 - Running hbm2ddl schema export
- 10:22:01,125 INFO SchemaExport:179 - exporting generated schema to database
- 10:22:01,203 INFO SchemaExport:196 - schema export complete
- 10:22:01,203 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
- 10:22:01,203 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.transaction.config.internalTransactionAdvisor' with merged definition [Root bean: class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,203 DEBUG InfrastructureAdvisorAutoProxyCreator:343 - Did not attempt to auto-proxy infrastructure class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
- 10:22:01,203 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.transaction.config.internalTransactionAdvisor' to allow for resolving potential circular references
- 10:22:01,203 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
- 10:22:01,203 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'advice' of type [org.aopalliance.aop.Advice]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'classFilter' of type [org.springframework.aop.ClassFilter]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'perInstance' of type [boolean]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'pointcut' of type [org.springframework.aop.Pointcut]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionInterceptor' of type [org.springframework.transaction.interceptor.TransactionInterceptor]
- 10:22:01,218 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean '(inner bean)' with merged definition [Root bean: class [org.springframework.transaction.interceptor.TransactionInterceptor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,218 DEBUG InfrastructureAdvisorAutoProxyCreator:343 - Did not attempt to auto-proxy infrastructure class [org.springframework.transaction.interceptor.TransactionInterceptor]
- 10:22:01,218 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.interceptor.TransactionInterceptor]
- 10:22:01,218 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.interceptor.TransactionInterceptor]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributeSource' of type [org.springframework.transaction.interceptor.TransactionAttributeSource]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributeSources' of type [[Lorg.springframework.transaction.interceptor.TransactionAttributeSource;]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributes' of type [java.util.Properties]
- 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionManager' of type [org.springframework.transaction.PlatformTransactionManager]
- 10:22:01,218 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'txManager'
- 10:22:01,218 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'txManager' with merged definition [Root bean: class [org.springframework.orm.hibernate3.HibernateTransactionManager]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in ServletContext resource [/WEB-INF/applicationContext.xml]]
- 10:22:01,234 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'txManager' to allow for resolving potential circular references
- 10:22:01,234 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.orm.hibernate3.HibernateTransactionManager]
- 10:22:01,234 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.orm.hibernate3.HibernateTransactionManager]
- 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'autodetectDataSource' of type [boolean]
- 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
- 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'dataSource' of type [javax.sql.DataSource]
- 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultTimeout' of type [int]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptor' of type [org.hibernate.Interceptor]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptorBeanName' of type [java.lang.String]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'failEarlyOnGlobalRollbackOnly' of type [boolean]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'globalRollbackOnParticipationFailure' of type [boolean]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'jdbcExceptionTranslator' of type [org.springframework.jdbc.support.SQLExceptionTranslator]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'nestedTransactionAllowed' of type [boolean]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'prepareConnection' of type [boolean]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'resourceFactory' of type [java.lang.Object]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'rollbackOnCommitFailure' of type [boolean]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'sessionFactory' of type [org.hibernate.SessionFactory]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionSynchronization' of type [int]
- 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionSynchronizationName' of type [java.lang.String]
- 10:22:01,250 DEBUG DefaultListableBeanFactory:199 - Returning eagerly cached instance of singleton bean 'mySessionFactory' that is not fully initialized yet - a consequence of a circular reference
- 10:22:01,265 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean '(inner bean)' with merged definition [Root bean: class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,265 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
- 10:22:01,265 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
- 10:22:01,265 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'txManager'
- 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
- 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
- 10:22:01,281 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]: org.springframework.context.event.ContextRefreshedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@14c4f70: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:59 MSD 2009]; root of context hierarchy]
- 10:22:01,281 DEBUG ContextLoader:195 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 10:22:01,281 INFO ContextLoader:200 - Root WebApplicationContext: initialization completed in 1485 ms
- 10:22:01,296 DEBUG DispatcherServlet:108 - Initializing servlet 'dispatcher'
- PWC1412: WebModule[/gb] ServletContext.log():Initializing Spring FrameworkServlet 'dispatcher'
- 10:22:01,312 INFO DispatcherServlet:231 - FrameworkServlet 'dispatcher': initialization started
- 10:22:01,312 DEBUG DispatcherServlet:307 - Servlet with name 'dispatcher' will try to create custom WebApplicationContext context of class 'org.springframework.web.context.support.XmlWebApplicationContext', using parent context [org.springframework.web.context.support.XmlWebApplicationContext@14c4f70: display name [Root WebApplicationContext]; startup date [Wed May 13 10:21:59 MSD 2009]; root of context hierarchy]
- 10:22:01,312 INFO XmlWebApplicationContext:400 - Refreshing org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,312 INFO XmlBeanDefinitionReader:303 - Loading XML bean definitions from ServletContext resource [/WEB-INF/dispatcher-servlet.xml]
- 10:22:01,312 DEBUG DefaultDocumentLoader:75 - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
- 10:22:01,312 DEBUG PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/beans/spring-beans-2.5.xsd]
- 10:22:01,312 DEBUG PluggableSchemaResolver:125 - Loading schema mappings from [META-INF/spring.schemas]
- 10:22:01,312 DEBUG PluggableSchemaResolver:131 - Loaded schema mappings: {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/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-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/jms/spring-jms-2.5.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-2.5.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/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.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/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-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/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.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/jms/spring-jms.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-2.5.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/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.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/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.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/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd}
- 10:22:01,312 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/beans/spring-beans-2.5.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-2.5.xsd
- 10:22:01,328 DEBUG PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/context/spring-context-2.5.xsd]
- 10:22:01,328 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/context/spring-context-2.5.xsd] in classpath: org/springframework/context/config/spring-context-2.5.xsd
- 10:22:01,328 DEBUG DefaultBeanDefinitionDocumentReader:84 - Loading bean definitions
- 10:22:01,328 DEBUG DefaultNamespaceHandlerResolver:153 - Loaded mappings [{http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jms=org.springframework.jms.config.JmsNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}]
- 10:22:01,328 DEBUG ClassUtils:164 - Class [weblogic.management.Helper] or one of its dependencies is not present: java.lang.ClassNotFoundException: weblogic.management.Helper
- 10:22:01,328 DEBUG ClassUtils:164 - Class [com.ibm.websphere.management.AdminServiceFactory] or one of its dependencies is not present: java.lang.ClassNotFoundException: com.ibm.websphere.management.AdminServiceFactory
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:481 - Looking for matching resources in directory tree [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook] for files matching pattern [C:/Documents and Settings/Администратор/Мои документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components] for files matching pattern [C:/Documents and Settings/Администратор/Мои документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao] for files matching pattern [C:/Documents and Settings/Администратор/Мои документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service] for files matching pattern [C:/Documents and Settings/Администратор/Мои документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\controller] for files matching pattern [C:/Documents and Settings/Администратор/Мои документы/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
- 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:327 - Resolved location pattern [classpath*:guestbook/**/*.class] to resources [file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\Comment.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\CommentDao$1.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\CommentDao.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\ICommentDao.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service\CommentService.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service\ICommentService.class], file [C:\Documents and Settings\Администратор\Мои документы\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\controller\CommentsListController.class]]
- 10:22:01,406 DEBUG XmlBeanDefinitionReader:160 - Loaded 8 bean definitions from location pattern [/WEB-INF/dispatcher-servlet.xml]
- 10:22:01,406 INFO XmlWebApplicationContext:415 - Bean factory for application context [org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb]: org.springframework.beans.factory.support.DefaultListableBeanFactory@1e2a4dd
- 10:22:01,406 DEBUG XmlWebApplicationContext:419 - 8 beans defined in org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70
- 10:22:01,406 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
- 10:22:01,406 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' with merged definition [Root bean: class [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
- 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
- 10:22:01,421 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' with merged definition [Root bean: class [org.springframework.context.annotation.CommonAnnotationBeanPostProcessor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
- 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
- 10:22:01,421 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' with merged definition [Root bean: class [org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' to allow for resolving potential circular references
- 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
- 10:22:01,421 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' with merged definition [Root bean: class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
- 10:22:01,437 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]
- 10:22:01,437 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]
- 10:22:01,437 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,437 DEBUG CachedIntrospectionResults:265 - Found bean property 'requiredAnnotationType' of type [java.lang.Class]
- 10:22:01,437 DEBUG XmlWebApplicationContext:636 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@14f069b]
- 10:22:01,437 DEBUG XmlWebApplicationContext:660 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@13ac260]
- 10:22:01,437 DEBUG UiApplicationContextUtils:85 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.DelegatingThemeSource@af64a6]
- 10:22:01,437 INFO DefaultListableBeanFactory:398 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1e2a4dd: defining beans [org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,commentDao,commentService,commentsListController,viewResolver]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936
- 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
- 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
- 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
- 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
- 10:22:01,437 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentDao'
- 10:22:01,437 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'commentDao' with merged definition [Root bean: class [guestbook.components.dao.CommentDao]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,453 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'mySessionFactory'
- 10:22:01,453 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'txManager'
- 10:22:01,453 DEBUG DefaultListableBeanFactory:553 - Autowiring by type from bean name 'commentDao' via constructor to bean named 'mySessionFactory'
- 10:22:01,453 DEBUG DefaultListableBeanFactory:553 - Autowiring by type from bean name 'commentDao' via constructor to bean named 'txManager'
- 10:22:01,453 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentDao' to allow for resolving potential circular references
- 10:22:01,453 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.components.dao.CommentDao]
- 10:22:01,453 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.components.dao.CommentDao]
- 10:22:01,453 DEBUG CachedIntrospectionResults:265 - Found bean property 'all' of type [java.util.List]
- 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,468 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentService'
- 10:22:01,468 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'commentService' with merged definition [Root bean: class [guestbook.components.service.CommentService]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,468 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentService' to allow for resolving potential circular references
- 10:22:01,468 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentDao'
- 10:22:01,468 DEBUG AutowiredAnnotationBeanPostProcessor:431 - Autowiring by type from bean name 'commentService' via field to bean named 'commentDao'
- 10:22:01,468 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.components.service.CommentService]
- 10:22:01,468 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.components.service.CommentService]
- 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'all' of type [java.util.List]
- 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,468 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentsListController'
- 10:22:01,468 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'commentsListController' with merged definition [Root bean: class [guestbook.controller.CommentsListController]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,468 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentsListController' to allow for resolving potential circular references
- 10:22:01,468 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentService'
- 10:22:01,468 DEBUG AutowiredAnnotationBeanPostProcessor:431 - Autowiring by type from bean name 'commentsListController' via field to bean named 'commentService'
- 10:22:01,468 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.controller.CommentsListController]
- 10:22:01,484 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.controller.CommentsListController]
- 10:22:01,484 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,484 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'viewResolver'
- 10:22:01,484 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'viewResolver' with merged definition [Root bean: class [org.springframework.web.servlet.view.InternalResourceViewResolver]; scope=singleton; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in ServletContext resource [/WEB-INF/dispatcher-servlet.xml]]
- 10:22:01,484 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'viewResolver' to allow for resolving potential circular references
- 10:22:01,484 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.view.InternalResourceViewResolver]
- 10:22:01,484 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.view.InternalResourceViewResolver]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysInclude' of type [boolean]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'attributes' of type [java.util.Properties]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'attributesMap' of type [java.util.Map]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'cache' of type [boolean]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'contentType' of type [java.lang.String]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeContextBeansAsAttributes' of type [boolean]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'prefix' of type [java.lang.String]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'redirectContextRelative' of type [boolean]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'redirectHttp10Compatible' of type [boolean]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'requestContextAttribute' of type [java.lang.String]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'suffix' of type [java.lang.String]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'viewClass' of type [java.lang.Class]
- 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'viewNames' of type [[Ljava.lang.String;]
- 10:22:01,500 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb]: org.springframework.context.event.ContextRefreshedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]
- 10:22:01,500 DEBUG DefaultListableBeanFactory:389 - No bean named 'multipartResolver' found in org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:22:01,500 DEBUG DispatcherServlet:435 - Unable to locate MultipartResolver with name 'multipartResolver': no multipart request handling provided
- 10:22:01,500 DEBUG DefaultListableBeanFactory:389 - No bean named 'localeResolver' found in org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:22:01,515 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver' with merged definition [Root bean: class [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,515 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver]
- 10:22:01,515 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver]
- 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,515 DEBUG DispatcherServlet:458 - Unable to locate LocaleResolver with name 'localeResolver': using default [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver@e0bd27]
- 10:22:01,515 DEBUG DefaultListableBeanFactory:389 - No bean named 'themeResolver' found in org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:22:01,515 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver' with merged definition [Root bean: class [org.springframework.web.servlet.theme.FixedThemeResolver]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,515 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.theme.FixedThemeResolver]
- 10:22:01,515 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.theme.FixedThemeResolver]
- 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultThemeName' of type [java.lang.String]
- 10:22:01,515 DEBUG DispatcherServlet:481 - Unable to locate ThemeResolver with name 'themeResolver': using default [org.springframework.web.servlet.theme.FixedThemeResolver@19533ee]
- 10:22:01,531 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' with merged definition [Root bean: class [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,531 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping]
- 10:22:01,531 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping]
- 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
- 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
- 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultHandler' of type [java.lang.Object]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'detectHandlersInAncestorContexts' of type [boolean]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'handlerMap' of type [java.util.Map]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptors' of type [[Ljava.lang.Object;]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'lazyInitHandlers' of type [boolean]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'rootHandler' of type [java.lang.Object]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
- 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:70 - Looking for URL mappings in application context: org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentDao': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentService': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentsListController': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'viewResolver': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'messageSource': no URL paths identified
- 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'applicationEventMulticaster': no URL paths identified
- 10:22:01,546 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping' with merged definition [Root bean: class [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,546 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping]
- 10:22:01,562 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping]
- 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
- 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
- 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultHandler' of type [java.lang.Object]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'detectHandlersInAncestorContexts' of type [boolean]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'handlerMap' of type [java.util.Map]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptors' of type [[Ljava.lang.Object;]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'lazyInitHandlers' of type [boolean]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'rootHandler' of type [java.lang.Object]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
- 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:70 - Looking for URL mappings in application context: org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': no URL paths identified
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'commentDao': no URL paths identified
- 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'commentService': no URL paths identified
- 10:22:01,578 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentsListController'
- 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:301 - Mapped URL path [/index.do] onto handler [guestbook.controller.CommentsListController@1df20f2]
- 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'viewResolver': no URL paths identified
- 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'messageSource': no URL paths identified
- 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'applicationEventMulticaster': no URL paths identified
- 10:22:01,593 DEBUG DispatcherServlet:521 - No HandlerMappings found in servlet 'dispatcher': using default
- 10:22:01,593 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' with merged definition [Root bean: class [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,593 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter]
- 10:22:01,593 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter]
- 10:22:01,593 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,593 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' with merged definition [Root bean: class [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,593 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter]
- 10:22:01,593 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter]
- 10:22:01,593 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,609 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter' with merged definition [Root bean: class [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,609 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter]
- 10:22:01,609 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter]
- 10:22:01,609 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,609 DEBUG CachedIntrospectionResults:265 - Found bean property 'commandName' of type [java.lang.String]
- 10:22:01,609 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter' with merged definition [Root bean: class [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,625 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
- 10:22:01,625 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]
- 10:22:01,625 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'cacheSeconds' of type [int]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'methodNameResolver' of type [org.springframework.web.servlet.mvc.multiaction.MethodNameResolver]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'requireSession' of type [boolean]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'sessionAttributeStore' of type [org.springframework.web.bind.support.SessionAttributeStore]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'supportedMethods' of type [[Ljava.lang.String;]
- 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'useCacheControlHeader' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'useExpiresHeader' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'webBindingInitializer' of type [org.springframework.web.bind.support.WebBindingInitializer]
- 10:22:01,640 DEBUG DispatcherServlet:560 - No HandlerAdapters found in servlet 'dispatcher': using default
- 10:22:01,640 DEBUG DispatcherServlet:600 - No HandlerExceptionResolvers found in servlet 'dispatcher': using default
- 10:22:01,640 DEBUG DefaultListableBeanFactory:389 - No bean named 'viewNameTranslator' found in org.springframework.beans.factory.support.DefaultListableBeanFactory@e8a936: defining beans [mySessionFactory,txManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
- 10:22:01,640 DEBUG DefaultListableBeanFactory:458 - Creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator' with merged definition [Root bean: class [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator]; scope=prototype; abstract=false; lazyInit=false; autowireCandidate=true; autowireMode=0; dependencyCheck=0; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]
- 10:22:01,640 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator]
- 10:22:01,640 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'prefix' of type [java.lang.String]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'separator' of type [java.lang.String]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'stripExtension' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'stripLeadingSlash' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'suffix' of type [java.lang.String]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
- 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
- 10:22:01,640 DEBUG DispatcherServlet:622 - Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@1bdec86]
- 10:22:01,656 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'viewResolver'
- 10:22:01,656 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]: org.springframework.context.event.ContextRefreshedEvent[source=org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb: display name [WebApplicationContext for namespace 'dispatcher-servlet']; startup date [Wed May 13 10:22:01 MSD 2009]; parent: org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]
- 10:22:01,656 DEBUG DispatcherServlet:279 - Published WebApplicationContext of servlet 'dispatcher' as ServletContext attribute with name [org.springframework.web.servlet.FrameworkServlet.CONTEXT.dispatcher]
- 10:22:01,656 INFO DispatcherServlet:250 - FrameworkServlet 'dispatcher': initialization completed in 344 ms
- 10:22:01,656 DEBUG DispatcherServlet:129 - Servlet 'dispatcher' configured successfully
- 10:22:01,921 DEBUG DispatcherServlet:1040 - Testing handler map [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping@1d8a5c4] in DispatcherServlet with name 'dispatcher'
- 10:22:01,921 DEBUG BeanNameUrlHandlerMapping:153 - Looking up handler for [/index.do]
- 10:22:01,921 DEBUG DispatcherServlet:1040 - Testing handler map [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping@1a60fcd] in DispatcherServlet with name 'dispatcher'
- 10:22:01,921 DEBUG DefaultAnnotationHandlerMapping:153 - Looking up handler for [/index.do]
- 10:22:01,937 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@10e6f59]
- 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@178ab8d]
- 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@146c61f]
- 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@179336b]
- 10:22:01,968 DEBUG DispatcherServlet:959 - Last-Modified value for [/gb/index.do] is [-1]
- 10:22:01,968 DEBUG DispatcherServlet:782 - DispatcherServlet with name 'dispatcher' received request for [/gb/index.do]
- 10:22:01,984 DEBUG DispatcherServlet:844 - Bound request context to thread: org.apache.coyote.tomcat5.CoyoteRequestFacade@128c728
- 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@10e6f59]
- 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@178ab8d]
- 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@146c61f]
- 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@179336b]
- false
- 10:22:02,000 DEBUG SessionFactoryUtils:316 - Opening Hibernate Session
- Hibernate: insert into Comment (author, commentDate, text, title) values (?, ?, ?, ?)
- 10:22:02,531 DEBUG HibernateTemplate:389 - Eagerly flushing Hibernate session
- 10:22:02,531 DEBUG SessionFactoryUtils:772 - Closing Hibernate Session
- 10:22:02,531 DEBUG InternalResourceViewResolver:81 - Cached view [index]
- 10:22:02,531 DEBUG DispatcherServlet:1156 - Rendering view [org.springframework.web.servlet.view.JstlView: name 'index'; URL [/WEB-INF/jsp/index.jsp]] in DispatcherServlet with name 'dispatcher'
- 10:22:02,531 DEBUG JstlView:223 - Rendering view with name 'index' with model {} and static attributes {}
- 10:22:02,609 DEBUG JstlView:169 - Forwarded to resource [/WEB-INF/jsp/index.jsp] in InternalResourceView 'index'
- 10:22:02,609 DEBUG DispatcherServlet:938 - Cleared thread-bound request context: org.apache.coyote.tomcat5.CoyoteRequestFacade@128c728
- 10:22:02,625 DEBUG DispatcherServlet:496 - Successfully completed request
- 10:22:02,625 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@13d6bcb]: ServletRequestHandledEvent: url=[/gb/index.do]; client=[127.0.0.1]; method=[GET]; servlet=[dispatcher]; session=[8a27ec1dfda8f0b41ef2f5e272e6]; user=[null]; time=[657ms]; status=[OK]
- 10:22:02,625 DEBUG XmlWebApplicationContext:258 - Publishing event in context [org.springframework.web.context.support.XmlWebApplicationContext@14c4f70]: ServletRequestHandledEvent: url=[/gb/index.do]; client=[127.0.0.1]; method=[GET]; servlet=[dispatcher]; session=[8a27ec1dfda8f0b41ef2f5e272e6]; user=[null]; time=[657ms]; status=[OK]
Advertisement
Add Comment
Please, Sign In to add comment