Guest User

Nuru

a guest
May 13th, 2009
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 97.95 KB | None | 0 0
  1. ApplicationContext.xml:
  2.  
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <beans xmlns="http://www.springframework.org/schema/beans"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xmlns:jee="http://www.springframework.org/schema/jee"
  9. xsi:schemaLocation="
  10. http://www.springframework.org/schema/beans
  11. http://www.springframework.org/schema/beans/spring-beans.xsd
  12. http://www.springframework.org/schema/tx
  13. http://www.springframework.org/schema/tx/spring-tx.xsd
  14. http://www.springframework.org/schema/aop
  15. http://www.springframework.org/schema/aop/spring-aop.xsd
  16. http://www.springframework.org/schema/jee
  17. http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">
  18.    
  19.     <bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
  20.         <property name="configLocation">
  21.             <value>classpath:hibernate.cfg.xml</value>
  22.         </property>
  23.     </bean>
  24.  
  25.     <bean id ="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  26.         <property name="sessionFactory" ref="mySessionFactory"/>
  27.     </bean>
  28.  
  29.     <tx:annotation-driven transaction-manager="txManager"/>
  30. </beans>
  31.  
  32. =========================================================================================================================
  33.  
  34. dispatcher-servlet.xml:
  35.  
  36. <?xml version="1.0" encoding="UTF-8"?>
  37. <beans xmlns="http://www.springframework.org/schema/beans"
  38.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  39.        xmlns:p="http://www.springframework.org/schema/p"
  40.        xmlns:aop="http://www.springframework.org/schema/aop"
  41.        xmlns:tx="http://www.springframework.org/schema/tx"
  42.        xmlns:context="http://www.springframework.org/schema/context"
  43.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
  44.       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
  45. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
  46. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
  47.  
  48.     <context:annotation-config/>
  49.     <context:component-scan base-package="guestbook"/>
  50.  
  51.     <bean id="viewResolver"
  52.           class="org.springframework.web.servlet.view.InternalResourceViewResolver"
  53.           p:prefix="/WEB-INF/jsp/"
  54.           p:suffix=".jsp" />
  55.  
  56. </beans>
  57.  
  58. =========================================================================================================================
  59.  
  60. hibernate.cfg:
  61.  
  62. <?xml version="1.0" encoding="UTF-8"?>
  63. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  64. <hibernate-configuration>
  65.     <session-factory>
  66.         <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  67.         <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  68.         <property name="hibernate.connection.url">jdbc:mysql://localhost/gb</property>
  69.         <property name="hibernate.connection.username">root</property>
  70.         <property name="hibernate.connection.password">******</property>
  71.         <property name="hibernate.connection.autocommit">false</property>
  72.         <property name="hibernate.hbm2ddl.auto">create-drop</property>
  73.         <property name="hibernate.show_sql">true</property>
  74.         <mapping class="guestbook.components.Comment"/>
  75.     </session-factory>
  76. </hibernate-configuration>
  77.  
  78. =========================================================================================================================
  79.  
  80. log4j.xml:
  81.  
  82. <?xml version="1.0" encoding="UTF-8" ?>
  83. <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
  84.  
  85. <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
  86.     <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
  87.         <layout class="org.apache.log4j.PatternLayout">
  88.             <param name="ConversionPattern"
  89.                 value="%d{ABSOLUTE} %5p %c{1}:%L - %m%n"/>
  90.         </layout>
  91.     </appender>
  92.  
  93.     <logger name="org.springframework">
  94.         <level value="DEBUG"/>
  95.     </logger>
  96.  
  97.     <logger name="org.hibernate">
  98.         <level value="INFO"/>
  99.     </logger>
  100.  
  101.     <root>
  102.         <level value="TRACE"/>
  103.         <appender-ref ref="CONSOLE"/>
  104.     </root>
  105. </log4j:configuration>
  106.  
  107.  
  108. =========================================================================================================================
  109.  
  110. ICommentDao:
  111.  
  112. package guestbook.components.dao;
  113.  
  114. import guestbook.components.Comment;
  115. import java.util.List;
  116.  
  117. public interface ICommentDao {
  118.  
  119.     public void create(Comment comment);
  120.  
  121.     public void delete(Comment comment);
  122.  
  123.     public Comment read(Integer id);
  124.  
  125.     public void update(Comment comment);
  126.  
  127.     public List<Comment> getAll();
  128. }
  129.  
  130. CommentDao:
  131.  
  132. package guestbook.components.dao;
  133.  
  134. import guestbook.components.Comment;
  135. import java.sql.SQLException;
  136. import java.util.List;
  137. import org.hibernate.HibernateException;
  138. import org.hibernate.Query;
  139. import org.hibernate.Session;
  140. import org.hibernate.SessionFactory;
  141. import org.springframework.beans.factory.annotation.Autowired;
  142. import org.springframework.orm.hibernate3.HibernateCallback;
  143. import org.springframework.orm.hibernate3.HibernateTemplate;
  144. import org.springframework.stereotype.Repository;
  145. import org.springframework.transaction.PlatformTransactionManager;
  146. import org.springframework.transaction.support.TransactionSynchronizationManager;
  147.  
  148. @Repository
  149. public class CommentDao implements ICommentDao {
  150.  
  151.     private HibernateTemplate hibernateTemplate;
  152.  
  153.     public CommentDao() {
  154.     }
  155.  
  156.     @Autowired
  157.     public CommentDao(SessionFactory sessionFactory, PlatformTransactionManager transactionManager) {
  158.         hibernateTemplate = new HibernateTemplate(sessionFactory);
  159.     }
  160.  
  161.     public void create(final Comment comment) {
  162.         System.out.println(TransactionSynchronizationManager.isActualTransactionActive());
  163.         hibernateTemplate.save(comment);
  164.     }
  165.  
  166.     public void delete(Comment comment) {
  167.         hibernateTemplate.delete(comment);
  168.     }
  169.  
  170.     public Comment read(Integer id) {
  171.         return (Comment) hibernateTemplate.get(Comment.class, id);
  172.     }
  173.  
  174.     public void update(Comment comment) {
  175.         hibernateTemplate.update(comment);
  176.     }
  177.  
  178.     public List<Comment> getAll() {
  179.  
  180.         return (List<Comment>) hibernateTemplate.execute(new HibernateCallback() {
  181.  
  182.             public Object doInHibernate(Session session) throws HibernateException, SQLException {
  183.                 Query query = (Query) session.createQuery("from Comment");
  184.                 List<Comment> result = query.list();
  185.                 return result;
  186.             }
  187.         });
  188.     }
  189. }
  190.  
  191. =========================================================================================================================
  192.  
  193. package guestbook.components.service;
  194.  
  195. import guestbook.components.Comment;
  196. import java.util.List;
  197. import org.springframework.transaction.annotation.Transactional;
  198.  
  199. public interface ICommentService {
  200.  
  201. @@    @Transactional
  202.     public void create(Comment comment);
  203.  
  204.     public void delete(Comment comment);
  205.  
  206.     public Comment read(Integer id);
  207.  
  208.     public void update(Comment comment);
  209.  
  210.     public List<Comment> getAll();
  211. }
  212.  
  213. package guestbook.components.service;
  214.  
  215. import guestbook.components.Comment;
  216. import guestbook.components.dao.ICommentDao;
  217. import java.util.List;
  218. import org.springframework.beans.factory.annotation.Autowired;
  219. import org.springframework.stereotype.Service;
  220.  
  221. @Service
  222. public class CommentService implements ICommentService {
  223.  
  224.     @Autowired private ICommentDao commentDao;
  225.     public void create(Comment comment) {
  226.         commentDao.create(comment);
  227.     }
  228.  
  229.     public void delete(Comment comment) {
  230.         throw new UnsupportedOperationException("Not supported yet.");
  231.     }
  232.  
  233.     public Comment read(Integer id) {
  234.         throw new UnsupportedOperationException("Not supported yet.");
  235.     }
  236.  
  237.     public void update(Comment comment) {
  238.         throw new UnsupportedOperationException("Not supported yet.");
  239.     }
  240.  
  241.     public List<Comment> getAll() {
  242.         throw new UnsupportedOperationException("Not supported yet.");
  243.     }
  244.  
  245. }
  246.  
  247. =========================================================================================================================
  248.  
  249. package guestbook.controller;
  250.  
  251. import guestbook.components.Comment;
  252. import guestbook.components.service.ICommentService;
  253. import java.util.Date;
  254. import org.springframework.beans.factory.annotation.Autowired;
  255. import org.springframework.stereotype.Controller;
  256. import org.springframework.web.bind.annotation.RequestMapping;
  257. import org.springframework.web.bind.annotation.RequestMethod;
  258.  
  259. @Controller
  260. @RequestMapping("/index.do")
  261. public class CommentsListController {
  262.  
  263.     @Autowired
  264.     private ICommentService commentService;
  265.  
  266.     @RequestMapping(method = RequestMethod.GET)
  267.     public String prepareForm() {
  268.         Comment comment = new Comment("Test", "Text text", new Date(System.currentTimeMillis()), "Nuru");
  269.         commentService.create(comment);
  270.         return "index";
  271.     }
  272. }
  273.  
  274. =========================================================================================================================
  275.  
  276. &#1053;&#1091; &#1080; &#1089;&#1072;&#1084; &#1072;&#1091;&#1090;&#1087;&#1091;&#1090;:
  277.  
  278. PWC1412: WebModule[/gb] ServletContext.log():Destroying Spring FrameworkServlet 'dispatcher'
  279. 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
  280. 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]
  281. 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]
  282. 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]
  283. 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]
  284. 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
  285. 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'viewResolver'
  286. 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentsListController'
  287. 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'commentService': [commentsListController]
  288. 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentService'
  289. 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'commentDao': [commentService]
  290. 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'commentDao'
  291. 10:21:52,125 DEBUG DisposableBeanAdapter:140 - Applying DestructionAwareBeanPostProcessors to bean with name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  292. PWC1412: WebModule[/gb] ServletContext.log():Closing Spring root WebApplicationContext
  293. 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
  294. 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]
  295. 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]
  296. 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
  297. 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'mySessionFactory': [txManager]
  298. 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean 'txManager': [(inner bean)]
  299. 10:21:52,125 DEBUG DefaultListableBeanFactory:388 - Retrieved dependent beans for bean '(inner bean)': [(inner bean), org.springframework.transaction.config.internalTransactionAdvisor]
  300. 10:21:52,125 DEBUG DisposableBeanAdapter:151 - Invoking destroy() on bean with name 'mySessionFactory'
  301. 10:21:52,125  INFO AnnotationSessionFactoryBean:246 - Closing Hibernate SessionFactory
  302. 10:21:52,125  INFO SessionFactoryImpl:769 - closing
  303. 10:21:52,125  INFO DriverManagerConnectionProvider:147 - cleaning up connection pool: jdbc:mysql://localhost/gb
  304. 10:21:52,171  INFO SchemaExport:154 - Running hbm2ddl schema export
  305. 10:21:52,171  INFO SchemaExport:179 - exporting generated schema to database
  306. 10:21:52,187  INFO SchemaExport:196 - schema export complete
  307. classLoader = WebappClassLoader
  308.   delegate: true
  309.   repositories:
  310.     /WEB-INF/classes/
  311. ----------> Parent Classloader:
  312. EJBClassLoader :
  313. urlSet = []
  314. doneCalled = false
  315.  Parent -> java.net.URLClassLoader@18041e0
  316. SharedSecrets.getJavaNetAccess()=java.net.URLClassLoader$7@1581448
  317. deployed with moduleid = GuestBook
  318. PWC1412: WebModule[/gb] ServletContext.log():Initializing Spring root WebApplicationContext
  319. 10:21:59,781  INFO ContextLoader:180 - Root WebApplicationContext: initialization started
  320. 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
  321. 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
  322. 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
  323. 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  324. 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  325. 10:21:59,843 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  326. 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  327. 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  328. 10:21:59,859 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  329. 10:21:59,875  INFO XmlBeanDefinitionReader:303 - Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
  330. 10:21:59,875 DEBUG DefaultDocumentLoader:75 - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
  331. 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]
  332. 10:21:59,875 DEBUG PluggableSchemaResolver:125 - Loading schema mappings from [META-INF/spring.schemas]
  333. 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}
  334. 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
  335. 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]
  336. 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
  337. 10:21:59,890 DEBUG DefaultBeanDefinitionDocumentReader:84 - Loading bean definitions
  338. 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}]
  339. 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
  340. 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
  341. 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
  342. 10:21:59,953 DEBUG XmlBeanDefinitionReader:160 - Loaded 4 bean definitions from location pattern [/WEB-INF/applicationContext.xml]
  343. 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
  344. 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
  345. 10:21:59,968 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
  346. 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]
  347. 10:22:00,000 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.aop.config.internalAutoProxyCreator' to allow for resolving potential circular references
  348. 10:22:00,000 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
  349. 10:22:00,015 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
  350. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'advisorAdapterRegistry' of type [org.springframework.aop.framework.adapter.AdvisorAdapterRegistry]
  351. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'applyCommonInterceptorsFirst' of type [boolean]
  352. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
  353. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
  354. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  355. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'customTargetSourceCreators' of type [[Lorg.springframework.aop.framework.autoproxy.TargetSourceCreator;]
  356. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeProxy' of type [boolean]
  357. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'frozen' of type [boolean]
  358. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptorNames' of type [[Ljava.lang.String;]
  359. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'opaque' of type [boolean]
  360. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'optimize' of type [boolean]
  361. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
  362. 10:22:00,015 DEBUG CachedIntrospectionResults:265 - Found bean property 'proxyTargetClass' of type [boolean]
  363. 10:22:00,031 DEBUG XmlWebApplicationContext:636 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@4b38f9]
  364. 10:22:00,031 DEBUG XmlWebApplicationContext:660 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@897819]
  365. 10:22:00,031 DEBUG UiApplicationContextUtils:85 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@12be3d9]
  366. 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
  367. 10:22:00,031 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'mySessionFactory'
  368. 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]]
  369. 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)
  370. 10:22:00,500 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'mySessionFactory' to allow for resolving potential circular references
  371. 10:22:00,500 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean]
  372. 10:22:00,500 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean]
  373. 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'annotatedClasses' of type [[Ljava.lang.Class;]
  374. 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'annotatedPackages' of type [[Ljava.lang.String;]
  375. 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
  376. 10:22:00,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'cacheableMappingLocations' of type [[Lorg.springframework.core.io.Resource;]
  377. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  378. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'collectionCacheStrategies' of type [java.util.Properties]
  379. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configLocation' of type [org.springframework.core.io.Resource]
  380. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configLocations' of type [[Lorg.springframework.core.io.Resource;]
  381. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configuration' of type [org.hibernate.cfg.Configuration]
  382. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'configurationClass' of type [java.lang.Class]
  383. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'dataSource' of type [javax.sql.DataSource]
  384. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityCacheStrategies' of type [java.util.Properties]
  385. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptor' of type [org.hibernate.Interceptor]
  386. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'eventListeners' of type [java.util.Map]
  387. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeTransactionAwareSessionFactory' of type [boolean]
  388. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'filterDefinitions' of type [[Lorg.hibernate.engine.FilterDefinition;]
  389. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'hibernateProperties' of type [java.util.Properties]
  390. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'jdbcExceptionTranslator' of type [org.springframework.jdbc.support.SQLExceptionTranslator]
  391. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'jtaTransactionManager' of type [javax.transaction.TransactionManager]
  392. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'lobHandler' of type [org.springframework.jdbc.support.lob.LobHandler]
  393. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingDirectoryLocations' of type [[Lorg.springframework.core.io.Resource;]
  394. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingJarLocations' of type [[Lorg.springframework.core.io.Resource;]
  395. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingLocations' of type [[Lorg.springframework.core.io.Resource;]
  396. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'mappingResources' of type [[Ljava.lang.String;]
  397. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'namingStrategy' of type [org.hibernate.cfg.NamingStrategy]
  398. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'object' of type [java.lang.Object]
  399. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'objectType' of type [java.lang.Class]
  400. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'schemaUpdate' of type [boolean]
  401. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'singleton' of type [boolean]
  402. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'typeDefinitions' of type [[Lorg.springframework.orm.hibernate3.TypeDefinitionBean;]
  403. 10:22:00,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'useTransactionAwareDataSource' of type [boolean]
  404. 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]
  405. 10:22:00,531  INFO Version:15 - Hibernate Annotations 3.3.1.GA
  406. 10:22:00,531  INFO Environment:514 - Hibernate 3.2.5
  407. 10:22:00,546  INFO Environment:547 - hibernate.properties not found
  408. 10:22:00,546  INFO Environment:681 - Bytecode provider name : cglib
  409. 10:22:00,546  INFO Environment:598 - using JDK 1.4 java.sql.Timestamp handling
  410. 10:22:00,609  INFO Configuration:1441 - configuring from url: file:/C:/Documents%20and%20Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080;%20&#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/hibernate.cfg.xml
  411. 10:22:00,656  INFO Configuration:1541 - Configured SessionFactory: null
  412. 10:22:00,656  INFO AnnotationSessionFactoryBean:689 - Building new Hibernate SessionFactory
  413. 10:22:00,703  INFO AnnotationBinder:418 - Binding entity from annotated class: guestbook.components.Comment
  414. 10:22:00,734  INFO EntityBinder:424 - Bind entity guestbook.components.Comment on table Comment
  415. 10:22:00,765  INFO AnnotationConfiguration:365 - Hibernate Validator not found: ignoring
  416. 10:22:00,828  INFO DriverManagerConnectionProvider:41 - Using Hibernate built-in connection pool (not for production use!)
  417. 10:22:00,828  INFO DriverManagerConnectionProvider:42 - Hibernate connection pool size: 20
  418. 10:22:00,828  INFO DriverManagerConnectionProvider:45 - autocommit mode: false
  419. 10:22:00,828  INFO DriverManagerConnectionProvider:80 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/gb
  420. 10:22:00,828  INFO DriverManagerConnectionProvider:86 - connection properties: {user=root, password=****, autocommit=false, release_mode=on_close}
  421. 10:22:00,843  INFO SettingsFactory:89 - RDBMS: MySQL, version: 6.0.9-alpha-community
  422. 10:22:00,843  INFO SettingsFactory:90 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
  423. 10:22:00,843  INFO Dialect:152 - Using dialect: org.hibernate.dialect.MySQLDialect
  424. 10:22:00,859  INFO TransactionFactoryFactory:31 - Using default transaction strategy (direct JDBC transactions)
  425. 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)
  426. 10:22:00,859  INFO SettingsFactory:143 - Automatic flush during beforeCompletion(): enabled
  427. 10:22:00,859  INFO SettingsFactory:147 - Automatic session close at end of transaction: disabled
  428. 10:22:00,859  INFO SettingsFactory:154 - JDBC batch size: 15
  429. 10:22:00,859  INFO SettingsFactory:157 - JDBC batch updates for versioned data: disabled
  430. 10:22:00,859  INFO SettingsFactory:162 - Scrollable result sets: enabled
  431. 10:22:00,859  INFO SettingsFactory:170 - JDBC3 getGeneratedKeys(): enabled
  432. 10:22:00,859  INFO SettingsFactory:178 - Connection release mode: on_close
  433. 10:22:00,859  INFO SettingsFactory:202 - Maximum outer join fetch depth: 2
  434. 10:22:00,859  INFO SettingsFactory:205 - Default batch fetch size: 1
  435. 10:22:00,859  INFO SettingsFactory:209 - Generate SQL with comments: disabled
  436. 10:22:00,859  INFO SettingsFactory:213 - Order SQL updates by primary key: disabled
  437. 10:22:00,859  INFO SettingsFactory:217 - Order SQL inserts for batching: disabled
  438. 10:22:00,859  INFO SettingsFactory:386 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
  439. 10:22:00,875  INFO ASTQueryTranslatorFactory:24 - Using ASTQueryTranslatorFactory
  440. 10:22:00,875  INFO SettingsFactory:225 - Query language substitutions: {}
  441. 10:22:00,875  INFO SettingsFactory:230 - JPA-QL strict compliance: disabled
  442. 10:22:00,875  INFO SettingsFactory:235 - Second-level cache: enabled
  443. 10:22:00,875  INFO SettingsFactory:239 - Query cache: disabled
  444. 10:22:00,875  INFO SettingsFactory:373 - Cache provider: org.hibernate.cache.NoCacheProvider
  445. 10:22:00,875  INFO SettingsFactory:254 - Optimize cache for minimal puts: disabled
  446. 10:22:00,875  INFO SettingsFactory:263 - Structured second-level cache entries: disabled
  447. 10:22:00,875  INFO SettingsFactory:283 - Echoing all SQL to stdout
  448. 10:22:00,875  INFO SettingsFactory:290 - Statistics: disabled
  449. 10:22:00,875  INFO SettingsFactory:294 - Deleted entity synthetic identifier rollback: disabled
  450. 10:22:00,875  INFO SettingsFactory:309 - Default entity-mode: pojo
  451. 10:22:00,875  INFO SettingsFactory:313 - Named query checking : enabled
  452. 10:22:00,906  INFO SessionFactoryImpl:161 - building session factory
  453. 10:22:01,109  INFO SessionFactoryObjectFactory:82 - Not binding factory to JNDI, no JNDI name configured
  454. 10:22:01,125  INFO SchemaExport:154 - Running hbm2ddl schema export
  455. 10:22:01,125  INFO SchemaExport:179 - exporting generated schema to database
  456. 10:22:01,203  INFO SchemaExport:196 - schema export complete
  457. 10:22:01,203 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  458. 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]
  459. 10:22:01,203 DEBUG InfrastructureAdvisorAutoProxyCreator:343 - Did not attempt to auto-proxy infrastructure class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
  460. 10:22:01,203 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.transaction.config.internalTransactionAdvisor' to allow for resolving potential circular references
  461. 10:22:01,203 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
  462. 10:22:01,203 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor]
  463. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'advice' of type [org.aopalliance.aop.Advice]
  464. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  465. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'classFilter' of type [org.springframework.aop.ClassFilter]
  466. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
  467. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'perInstance' of type [boolean]
  468. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'pointcut' of type [org.springframework.aop.Pointcut]
  469. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionInterceptor' of type [org.springframework.transaction.interceptor.TransactionInterceptor]
  470. 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]
  471. 10:22:01,218 DEBUG InfrastructureAdvisorAutoProxyCreator:343 - Did not attempt to auto-proxy infrastructure class [org.springframework.transaction.interceptor.TransactionInterceptor]
  472. 10:22:01,218 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.interceptor.TransactionInterceptor]
  473. 10:22:01,218 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.interceptor.TransactionInterceptor]
  474. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  475. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributeSource' of type [org.springframework.transaction.interceptor.TransactionAttributeSource]
  476. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributeSources' of type [[Lorg.springframework.transaction.interceptor.TransactionAttributeSource;]
  477. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionAttributes' of type [java.util.Properties]
  478. 10:22:01,218 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionManager' of type [org.springframework.transaction.PlatformTransactionManager]
  479. 10:22:01,218 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'txManager'
  480. 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]]
  481. 10:22:01,234 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'txManager' to allow for resolving potential circular references
  482. 10:22:01,234 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.orm.hibernate3.HibernateTransactionManager]
  483. 10:22:01,234 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.orm.hibernate3.HibernateTransactionManager]
  484. 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'autodetectDataSource' of type [boolean]
  485. 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
  486. 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  487. 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'dataSource' of type [javax.sql.DataSource]
  488. 10:22:01,234 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultTimeout' of type [int]
  489. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptor' of type [org.hibernate.Interceptor]
  490. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'entityInterceptorBeanName' of type [java.lang.String]
  491. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'failEarlyOnGlobalRollbackOnly' of type [boolean]
  492. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'globalRollbackOnParticipationFailure' of type [boolean]
  493. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'jdbcExceptionTranslator' of type [org.springframework.jdbc.support.SQLExceptionTranslator]
  494. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'nestedTransactionAllowed' of type [boolean]
  495. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'prepareConnection' of type [boolean]
  496. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'resourceFactory' of type [java.lang.Object]
  497. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'rollbackOnCommitFailure' of type [boolean]
  498. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'sessionFactory' of type [org.hibernate.SessionFactory]
  499. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionSynchronization' of type [int]
  500. 10:22:01,250 DEBUG CachedIntrospectionResults:265 - Found bean property 'transactionSynchronizationName' of type [java.lang.String]
  501. 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
  502. 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]
  503. 10:22:01,265 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
  504. 10:22:01,265 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
  505. 10:22:01,265 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  506. 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'txManager'
  507. 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
  508. 10:22:01,281 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  509. 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]
  510. 10:22:01,281 DEBUG ContextLoader:195 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
  511. 10:22:01,281  INFO ContextLoader:200 - Root WebApplicationContext: initialization completed in 1485 ms
  512. 10:22:01,296 DEBUG DispatcherServlet:108 - Initializing servlet 'dispatcher'
  513. PWC1412: WebModule[/gb] ServletContext.log():Initializing Spring FrameworkServlet 'dispatcher'
  514. 10:22:01,312  INFO DispatcherServlet:231 - FrameworkServlet 'dispatcher': initialization started
  515. 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]
  516. 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
  517. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  518. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  519. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  520. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  521. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  522. 10:22:01,312 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  523. 10:22:01,312  INFO XmlBeanDefinitionReader:303 - Loading XML bean definitions from ServletContext resource [/WEB-INF/dispatcher-servlet.xml]
  524. 10:22:01,312 DEBUG DefaultDocumentLoader:75 - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
  525. 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]
  526. 10:22:01,312 DEBUG PluggableSchemaResolver:125 - Loading schema mappings from [META-INF/spring.schemas]
  527. 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}
  528. 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
  529. 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]
  530. 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
  531. 10:22:01,328 DEBUG DefaultBeanDefinitionDocumentReader:84 - Loading bean definitions
  532. 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}]
  533. 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
  534. 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
  535. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:481 - Looking for matching resources in directory tree [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook]
  536. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook] for files matching pattern [C:/Documents and Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
  537. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components] for files matching pattern [C:/Documents and Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
  538. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao] for files matching pattern [C:/Documents and Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
  539. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service] for files matching pattern [C:/Documents and Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
  540. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:526 - Searching directory [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\controller] for files matching pattern [C:/Documents and Settings/&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;/&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;/NetBeansProjects/GuestBook/build/web/WEB-INF/classes/guestbook/**/*.class]
  541. 10:22:01,375 DEBUG PathMatchingResourcePatternResolver:327 - Resolved location pattern [classpath*:guestbook/**/*.class] to resources [file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\Comment.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\CommentDao$1.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\CommentDao.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\dao\ICommentDao.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service\CommentService.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\components\service\ICommentService.class], file [C:\Documents and Settings\&#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;\&#1052;&#1086;&#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;\NetBeansProjects\GuestBook\build\web\WEB-INF\classes\guestbook\controller\CommentsListController.class]]
  542. 10:22:01,406 DEBUG XmlBeanDefinitionReader:160 - Loaded 8 bean definitions from location pattern [/WEB-INF/dispatcher-servlet.xml]
  543. 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
  544. 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
  545. 10:22:01,406 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  546. 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]
  547. 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
  548. 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  549. 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]
  550. 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
  551. 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
  552. 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]
  553. 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' to allow for resolving potential circular references
  554. 10:22:01,421 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  555. 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]
  556. 10:22:01,421 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
  557. 10:22:01,437 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]
  558. 10:22:01,437 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor]
  559. 10:22:01,437 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  560. 10:22:01,437 DEBUG CachedIntrospectionResults:265 - Found bean property 'requiredAnnotationType' of type [java.lang.Class]
  561. 10:22:01,437 DEBUG XmlWebApplicationContext:636 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@14f069b]
  562. 10:22:01,437 DEBUG XmlWebApplicationContext:660 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@13ac260]
  563. 10:22:01,437 DEBUG UiApplicationContextUtils:85 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.DelegatingThemeSource@af64a6]
  564. 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
  565. 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
  566. 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
  567. 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
  568. 10:22:01,437 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
  569. 10:22:01,437 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentDao'
  570. 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]
  571. 10:22:01,453 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'mySessionFactory'
  572. 10:22:01,453 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'txManager'
  573. 10:22:01,453 DEBUG DefaultListableBeanFactory:553 - Autowiring by type from bean name 'commentDao' via constructor to bean named 'mySessionFactory'
  574. 10:22:01,453 DEBUG DefaultListableBeanFactory:553 - Autowiring by type from bean name 'commentDao' via constructor to bean named 'txManager'
  575. 10:22:01,453 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentDao' to allow for resolving potential circular references
  576. 10:22:01,453 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.components.dao.CommentDao]
  577. 10:22:01,453 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.components.dao.CommentDao]
  578. 10:22:01,453 DEBUG CachedIntrospectionResults:265 - Found bean property 'all' of type [java.util.List]
  579. 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  580. 10:22:01,468 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentService'
  581. 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]
  582. 10:22:01,468 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentService' to allow for resolving potential circular references
  583. 10:22:01,468 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentDao'
  584. 10:22:01,468 DEBUG AutowiredAnnotationBeanPostProcessor:431 - Autowiring by type from bean name 'commentService' via field to bean named 'commentDao'
  585. 10:22:01,468 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.components.service.CommentService]
  586. 10:22:01,468 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.components.service.CommentService]
  587. 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'all' of type [java.util.List]
  588. 10:22:01,468 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  589. 10:22:01,468 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'commentsListController'
  590. 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]
  591. 10:22:01,468 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'commentsListController' to allow for resolving potential circular references
  592. 10:22:01,468 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentService'
  593. 10:22:01,468 DEBUG AutowiredAnnotationBeanPostProcessor:431 - Autowiring by type from bean name 'commentsListController' via field to bean named 'commentService'
  594. 10:22:01,468 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [guestbook.controller.CommentsListController]
  595. 10:22:01,484 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [guestbook.controller.CommentsListController]
  596. 10:22:01,484 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  597. 10:22:01,484 DEBUG DefaultListableBeanFactory:161 - Creating shared instance of singleton bean 'viewResolver'
  598. 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]]
  599. 10:22:01,484 DEBUG DefaultListableBeanFactory:530 - Eagerly caching bean 'viewResolver' to allow for resolving potential circular references
  600. 10:22:01,484 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.view.InternalResourceViewResolver]
  601. 10:22:01,484 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.view.InternalResourceViewResolver]
  602. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysInclude' of type [boolean]
  603. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
  604. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'attributes' of type [java.util.Properties]
  605. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'attributesMap' of type [java.util.Map]
  606. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'cache' of type [boolean]
  607. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  608. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'contentType' of type [java.lang.String]
  609. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'exposeContextBeansAsAttributes' of type [boolean]
  610. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
  611. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'prefix' of type [java.lang.String]
  612. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'redirectContextRelative' of type [boolean]
  613. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'redirectHttp10Compatible' of type [boolean]
  614. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'requestContextAttribute' of type [java.lang.String]
  615. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
  616. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'suffix' of type [java.lang.String]
  617. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'viewClass' of type [java.lang.Class]
  618. 10:22:01,500 DEBUG CachedIntrospectionResults:265 - Found bean property 'viewNames' of type [[Ljava.lang.String;]
  619. 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]
  620. 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
  621. 10:22:01,500 DEBUG DispatcherServlet:435 - Unable to locate MultipartResolver with name 'multipartResolver': no multipart request handling provided
  622. 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
  623. 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]
  624. 10:22:01,515 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver]
  625. 10:22:01,515 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver]
  626. 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  627. 10:22:01,515 DEBUG DispatcherServlet:458 - Unable to locate LocaleResolver with name 'localeResolver': using default [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver@e0bd27]
  628. 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
  629. 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]
  630. 10:22:01,515 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.theme.FixedThemeResolver]
  631. 10:22:01,515 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.theme.FixedThemeResolver]
  632. 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  633. 10:22:01,515 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultThemeName' of type [java.lang.String]
  634. 10:22:01,515 DEBUG DispatcherServlet:481 - Unable to locate ThemeResolver with name 'themeResolver': using default [org.springframework.web.servlet.theme.FixedThemeResolver@19533ee]
  635. 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]
  636. 10:22:01,531 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping]
  637. 10:22:01,531 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping]
  638. 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
  639. 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
  640. 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  641. 10:22:01,531 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultHandler' of type [java.lang.Object]
  642. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'detectHandlersInAncestorContexts' of type [boolean]
  643. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'handlerMap' of type [java.util.Map]
  644. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptors' of type [[Ljava.lang.Object;]
  645. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'lazyInitHandlers' of type [boolean]
  646. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
  647. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
  648. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'rootHandler' of type [java.lang.Object]
  649. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
  650. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
  651. 10:22:01,546 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
  652. 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
  653. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
  654. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
  655. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
  656. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': no URL paths identified
  657. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentDao': no URL paths identified
  658. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentService': no URL paths identified
  659. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'commentsListController': no URL paths identified
  660. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'viewResolver': no URL paths identified
  661. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'messageSource': no URL paths identified
  662. 10:22:01,546 DEBUG BeanNameUrlHandlerMapping:86 - Rejected bean name 'applicationEventMulticaster': no URL paths identified
  663. 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]
  664. 10:22:01,546 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping]
  665. 10:22:01,562 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping]
  666. 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
  667. 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
  668. 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  669. 10:22:01,562 DEBUG CachedIntrospectionResults:265 - Found bean property 'defaultHandler' of type [java.lang.Object]
  670. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'detectHandlersInAncestorContexts' of type [boolean]
  671. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'handlerMap' of type [java.util.Map]
  672. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'interceptors' of type [[Ljava.lang.Object;]
  673. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'lazyInitHandlers' of type [boolean]
  674. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'order' of type [int]
  675. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
  676. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'rootHandler' of type [java.lang.Object]
  677. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
  678. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
  679. 10:22:01,578 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
  680. 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
  681. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
  682. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
  683. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
  684. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': no URL paths identified
  685. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'commentDao': no URL paths identified
  686. 10:22:01,578 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'commentService': no URL paths identified
  687. 10:22:01,578 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'commentsListController'
  688. 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:301 - Mapped URL path [/index.do] onto handler [guestbook.controller.CommentsListController@1df20f2]
  689. 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'viewResolver': no URL paths identified
  690. 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'messageSource': no URL paths identified
  691. 10:22:01,593 DEBUG DefaultAnnotationHandlerMapping:86 - Rejected bean name 'applicationEventMulticaster': no URL paths identified
  692. 10:22:01,593 DEBUG DispatcherServlet:521 - No HandlerMappings found in servlet 'dispatcher': using default
  693. 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]
  694. 10:22:01,593 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter]
  695. 10:22:01,593 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter]
  696. 10:22:01,593 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  697. 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]
  698. 10:22:01,593 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter]
  699. 10:22:01,593 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter]
  700. 10:22:01,593 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  701. 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]
  702. 10:22:01,609 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter]
  703. 10:22:01,609 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter]
  704. 10:22:01,609 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  705. 10:22:01,609 DEBUG CachedIntrospectionResults:265 - Found bean property 'commandName' of type [java.lang.String]
  706. 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]
  707. 10:22:01,625 DEBUG CollectionFactory:186 - Creating [java.util.concurrent.ConcurrentHashMap]
  708. 10:22:01,625 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]
  709. 10:22:01,625 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]
  710. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
  711. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
  712. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'cacheSeconds' of type [int]
  713. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  714. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'methodNameResolver' of type [org.springframework.web.servlet.mvc.multiaction.MethodNameResolver]
  715. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'pathMatcher' of type [org.springframework.util.PathMatcher]
  716. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'requireSession' of type [boolean]
  717. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'servletContext' of type [javax.servlet.ServletContext]
  718. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'sessionAttributeStore' of type [org.springframework.web.bind.support.SessionAttributeStore]
  719. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'supportedMethods' of type [[Ljava.lang.String;]
  720. 10:22:01,625 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
  721. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
  722. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'useCacheControlHeader' of type [boolean]
  723. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'useExpiresHeader' of type [boolean]
  724. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'webBindingInitializer' of type [org.springframework.web.bind.support.WebBindingInitializer]
  725. 10:22:01,640 DEBUG DispatcherServlet:560 - No HandlerAdapters found in servlet 'dispatcher': using default
  726. 10:22:01,640 DEBUG DispatcherServlet:600 - No HandlerExceptionResolvers found in servlet 'dispatcher': using default
  727. 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
  728. 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]
  729. 10:22:01,640 DEBUG CachedIntrospectionResults:240 - Getting BeanInfo for class [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator]
  730. 10:22:01,640 DEBUG CachedIntrospectionResults:256 - Caching PropertyDescriptors for class [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator]
  731. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'alwaysUseFullPath' of type [boolean]
  732. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'class' of type [java.lang.Class]
  733. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'prefix' of type [java.lang.String]
  734. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'separator' of type [java.lang.String]
  735. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'stripExtension' of type [boolean]
  736. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'stripLeadingSlash' of type [boolean]
  737. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'suffix' of type [java.lang.String]
  738. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlDecode' of type [boolean]
  739. 10:22:01,640 DEBUG CachedIntrospectionResults:265 - Found bean property 'urlPathHelper' of type [org.springframework.web.util.UrlPathHelper]
  740. 10:22:01,640 DEBUG DispatcherServlet:622 - Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@1bdec86]
  741. 10:22:01,656 DEBUG DefaultListableBeanFactory:203 - Returning cached instance of singleton bean 'viewResolver'
  742. 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]
  743. 10:22:01,656 DEBUG DispatcherServlet:279 - Published WebApplicationContext of servlet 'dispatcher' as ServletContext attribute with name [org.springframework.web.servlet.FrameworkServlet.CONTEXT.dispatcher]
  744. 10:22:01,656  INFO DispatcherServlet:250 - FrameworkServlet 'dispatcher': initialization completed in 344 ms
  745. 10:22:01,656 DEBUG DispatcherServlet:129 - Servlet 'dispatcher' configured successfully
  746. 10:22:01,921 DEBUG DispatcherServlet:1040 - Testing handler map [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping@1d8a5c4] in DispatcherServlet with name 'dispatcher'
  747. 10:22:01,921 DEBUG BeanNameUrlHandlerMapping:153 - Looking up handler for [/index.do]
  748. 10:22:01,921 DEBUG DispatcherServlet:1040 - Testing handler map [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping@1a60fcd] in DispatcherServlet with name 'dispatcher'
  749. 10:22:01,921 DEBUG DefaultAnnotationHandlerMapping:153 - Looking up handler for [/index.do]
  750. 10:22:01,937 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@10e6f59]
  751. 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@178ab8d]
  752. 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@146c61f]
  753. 10:22:01,968 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@179336b]
  754. 10:22:01,968 DEBUG DispatcherServlet:959 - Last-Modified value for [/gb/index.do] is [-1]
  755. 10:22:01,968 DEBUG DispatcherServlet:782 - DispatcherServlet with name 'dispatcher' received request for [/gb/index.do]
  756. 10:22:01,984 DEBUG DispatcherServlet:844 - Bound request context to thread: org.apache.coyote.tomcat5.CoyoteRequestFacade@128c728
  757. 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@10e6f59]
  758. 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@178ab8d]
  759. 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@146c61f]
  760. 10:22:01,984 DEBUG DispatcherServlet:1080 - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@179336b]
  761. false
  762. 10:22:02,000 DEBUG SessionFactoryUtils:316 - Opening Hibernate Session
  763. Hibernate: insert into Comment (author, commentDate, text, title) values (?, ?, ?, ?)
  764. 10:22:02,531 DEBUG HibernateTemplate:389 - Eagerly flushing Hibernate session
  765. 10:22:02,531 DEBUG SessionFactoryUtils:772 - Closing Hibernate Session
  766. 10:22:02,531 DEBUG InternalResourceViewResolver:81 - Cached view [index]
  767. 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'
  768. 10:22:02,531 DEBUG JstlView:223 - Rendering view with name 'index' with model {} and static attributes {}
  769. 10:22:02,609 DEBUG JstlView:169 - Forwarded to resource [/WEB-INF/jsp/index.jsp] in InternalResourceView 'index'
  770. 10:22:02,609 DEBUG DispatcherServlet:938 - Cleared thread-bound request context: org.apache.coyote.tomcat5.CoyoteRequestFacade@128c728
  771. 10:22:02,625 DEBUG DispatcherServlet:496 - Successfully completed request
  772. 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]
  773. 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]
  774.  
Advertisement
Add Comment
Please, Sign In to add comment