您的位置:首页 > 编程语言 > Java开发

flex,spring,ibatis整合

2014-03-09 16:07 405 查看
java部分:先看服务启动日志:

2014-3-9 14:51:14 org.apache.catalina.core.AprLifecycleListener init

信息: Loaded APR based Apache Tomcat Native library 1.1.22.(bin目录下:tcnative-1.dll)

2014-3-9 14:51:14 org.apache.catalina.core.AprLifecycleListener init

信息: APR capabilities: IPv6 [false], sendfile [true], accept filters [false], random [true].(初始化apr监听)

2014-3-9 14:51:14 org.apache.tomcat.util.digester.SetPropertiesRule begin

警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:FlexWebServer' did not find a matching property.(配置文件没有找到匹配属性)

2014-3-9 14:51:15 org.apache.coyote.http11.Http11AprProtocol init

信息: Initializing Coyote HTTP/1.1 on http-8080(初始化http协议)

2014-3-9// 14:51:15 org.apache.coyote.ajp.AjpAprProtocol init

信息: Initializing Coyote AJP/1.3 on ajp-8009(初始化ajp协议)

2014-3-9 14:51:15 org.apache.catalina.startup.Catalina load

信息: Initialization processed in 1570 ms (初始化catalina进程)

2014-3-9 14:51:15 org.apache.catalina.core.StandardService start

信息: Starting service Catalina(启动服务)

2014-3-9 14:51:15 org.apache.catalina.core.StandardEngine start

信息: Starting Servlet Engine: Apache Tomcat/6.0.35(启动servlet引擎)

2014-3-9 14:51:16 org.apache.catalina.core.ApplicationContext log

信息: Initializing Spring root WebApplicationContext(spring上下文对象初始化中)

2014-3-9 14:51:16 org.springframework.web.context.ContextLoader initWebApplicationContext

信息: Root WebApplicationContext: initialization started(上下文初始化后启动)

2014-3-9 14:51:16 org.springframework.context.support.AbstractApplicationContext
prepareRefresh
信息: Refreshing Root WebApplicationContext: startup date [Sun Mar 09 14:51:16 CST 2014]; root of context hierarchy(上下文准备刷新)

2014-3-9 14:51:16 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions

信息: Loading XML bean definitions from file

 [E:\j_work\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\FlexWebServer\WEB-INF\classes\spring-services.xml](加载配置文件中定义的bean)

2014-3-9 14:51:17 org.springframework.core.io.support.PropertiesLoaderSupport loadProperties

信息: Loading properties file from class path resource [jdbc.properties](加载配置文件jdbc.properties)

2014-3-9 14:51:17 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
信息: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5867df9: defining beans [org.springframework.context.support.PropertySourcesPlaceholderConfigurer#0,dataSource,sqlSessionFactory,customerDAO];
root of factory hierarchy(实例化customerDAO对象)
2014-3-9 14:51:18 org.springframework.web.context.ContextLoader initWebApplicationContext
信息: Root WebApplicationContext: initialization completed in 2405 ms(spring上下文初始化完毕)
2014-3-9 14:51:18 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring FrameworkServlet 'flex'(初始化springmvc servlet)
2014-3-9 14:51:18 org.springframework.web.servlet.FrameworkServlet initServletBean
信息: FrameworkServlet 'flex': initialization started(springmvc servlet初始化后并启动)
2014-3-9 14:51:18 org.springframework.context.support.AbstractApplicationContext
prepareRefresh
信息: Refreshing WebApplicationContext for namespace 'flex-servlet': startup date [Sun Mar 09 14:51:18 CST 2014]; parent: Root WebApplicationContext(刷新flex-servlet配置文件)
2014-3-9 14:51:18 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [flex-web.xml](从flex-web.xml中加载bean)
2014-3-9 14:51:19 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons
信息: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@12a45435: defining beans [_messageBrokerHandlerAdapter,_messageBrokerDefaultHandlerMapping,_jsonConfigMapEditorConfigurer,_messageBrokerMessagingProcessor,_messageBrokerRemotingProcessor,_flexRemotingAnnotationPostProcessor,_hibernateSerializationConfigPostProcessor,org.springframework.flex.core.ExceptionTranslationAdvice#0,org.springframework.flex.core.EndpointServiceMessagePointcutAdvisor#0,org.springframework.flex.core.MessageInterceptionAdvice#0,org.springframework.flex.core.EndpointServiceMessagePointcutAdvisor#1,_messageBrokerEndpointProcessor,_messageBroker,org.springframework.flex.remoting.RemotingDestinationExporter#0,customerService];
parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@5867df9(实例化bean)
2014-3-9 14:51:19 org.springframework.flex.config.FlexConfigurationManager$ResourceResolverAdapter getConfigurationFile
信息: Loading Flex services configuration from: ServletContext resource [/WEB-INF/flex/services-config.xml](读取flex相关配置文件)
2014-3-9 14:51:20 org.springframework.flex.core.MessageBrokerFactoryBean afterPropertiesSet
信息: BlazeDS - Community Edition: 4.0.0.14931(设置balzeds)
2014-3-9 14:51:20 org.springframework.flex.core.MessageBrokerFactoryBean afterPropertiesSet
信息: MessageBroker with id '_messageBroker' is starting.(启动messagebroker)
2014-3-9 14:51:20 org.springframework.flex.core.MessageBrokerFactoryBean afterPropertiesSet
信息: MessageBroker with id '_messageBroker' is ready (startup time: '504' ms)(messagebroker启动504ms)
2014-3-9 14:51:20 org.springframework.web.servlet.handler.AbstractUrlHandlerMapping registerHandler
信息: Default mapping to handler '_messageBroker'(路径默认影射给messagebroker)
2014-3-9 14:51:20 org.springframework.flex.remoting.RemotingDestinationExporter createDestination
信息: Created remoting destination with id 'customerService'(创建远处服务customerService)
2014-3-9 14:51:20 org.springframework.flex.remoting.RemotingDestinationExporter initializeDestination
信息: Remoting destination 'customerService' has been started started successfully.(远程服务开启成功)
2014-3-9 14:51:21 org.springframework.web.servlet.FrameworkServlet initServletBean
信息: FrameworkServlet 'flex': initialization completed in 2293 ms(springmvc 初始化完毕)
2014-3-9 14:51:21 org.apache.coyote.http11.Http11AprProtocol start
信息: Starting Coyote HTTP/1.1 on http-8080(http协议启动)
2014-3-9 14:51:22 org.apache.coyote.ajp.AjpAprProtocol start
信息: Starting Coyote AJP/1.3 on ajp-8009(ajp协议启动)
2014-3-9 14:51:22 org.apache.catalina.startup.Catalina start
信息: Server startup in 6652 ms(tomcat启动完毕)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: