2012年8月9日

ContextLoaderListener监听器有什麽用?

摘要: ContextLoaderListener的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。至于ApplicationContext.xml这个配置文件部署在哪,如何配置多个xml文件,书上都没怎么详细说明。现在的方法就是查看它的API文档。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。看看它的API说明第一段说明ContextLo 阅读全文
posted @ 2012-08-09 16:48 东云秋雨 阅读(314) 评论(0) 推荐(0) 编辑

mvn install

摘要: mvn install:install-file -DgroupId=com.alisoft.aep.sip -DartifactId=isv -Dversion=1.0 -Dpackaging=jar -Dfile=alisoft-aep-sip-sdk-isv-1.0.jar 阅读全文
posted @ 2012-08-09 16:46 东云秋雨 阅读(1067) 评论(0) 推荐(0) 编辑

java.lang.ClassNotFoundException: org.apache.commons.beanutils.Converter

摘要: 你的一个jar包没有导入,是commons-beanutils.jar ,不要直接导入工程中,这样的话下次还需要导入。直接导入Eclipse开发环境就可以了。 阅读全文
posted @ 2012-08-09 16:45 东云秋雨 阅读(917) 评论(0) 推荐(0) 编辑

ContextLoaderListener监听器有什麽用?

摘要: ContextLoaderListener的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。至于ApplicationContext.xml这个配置文件部署在哪,如何配置多个xml文件,书上都没怎么详细说明。现在的方法就是查看它的API文档。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。看看它的API说明第一段说明ContextLo 阅读全文
posted @ 2012-08-09 16:33 东云秋雨 阅读(199) 评论(0) 推荐(0) 编辑

mvn install

摘要: mvn install:install-file -DgroupId=com.alisoft.aep.sip -DartifactId=isv -Dversion=1.0 -Dpackaging=jar -Dfile=alisoft-aep-sip-sdk-isv-1.0.jar 阅读全文
posted @ 2012-08-09 16:31 东云秋雨 阅读(104) 评论(0) 推荐(0) 编辑