昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: DispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath...
分类:
编程语言 时间:
2014-06-27 20:50:28
阅读次数:
170
因项目需要,将springmvc和hbase整合,启动tomcat时报错如下:SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.conte...
分类:
编程语言 时间:
2014-06-27 20:20:46
阅读次数:
557
网上很多要修改.class .project的比较麻烦有时候还不一定管用。下面的方法适合于项目用已经引用了jar,但是运行时却ClassNotFound,请用如下方法试试:
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderL...
分类:
编程语言 时间:
2014-06-26 14:25:32
阅读次数:
228
上一章,介绍了如何扩展spring类实现自动读取配置文件。
这一章,我们介绍如何通过实现BeanPostProcessor接口,对容器中的Bean做一层代理,来满足我们的个性化需求。
一、基本原理
我很不想贴代码,有时候语言是空洞的,又不得不贴代码,有时候感觉用代码来说明一件事反而更容易些。
import org.springframework.beans.Bean...
分类:
编程语言 时间:
2014-06-26 14:13:48
阅读次数:
255
自定义配置文件到spring 中,有时候想做一些数据结构的配置化信息,根据业务做一个扩展。
首先:
在项目的META-INF目录下新建两个文件spring.handlers,和spring.shcemas
Spring.handlers在类org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver中已经写死...
分类:
编程语言 时间:
2014-06-25 00:32:16
阅读次数:
304
其实主要是log4j配置,跟SSI关系不大。
web.xml中添加
log4jConfigLocation
/WEB-INF/localconf/log4j.properties
log4jRefreshInterval
6000
org.springframework.web...
分类:
其他好文 时间:
2014-06-22 22:46:11
阅读次数:
270
job存在数据库中,可以进行动态的增增删改查,最近遇到了如何获取ApplicationContext上下文的问题,解决办法如下
applicationContext-quartz.xml
applicationContextSchedulerContextKey: 是org.springframework.scheduli...
分类:
移动开发 时间:
2014-06-22 18:19:42
阅读次数:
230
1.注解开发无需导入全新的jar包
2.使用注解开发必须开启命名空间context
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:xsi="http://www.w3.org/2001/...
分类:
编程语言 时间:
2014-06-22 16:08:58
阅读次数:
164
spring.xml新加入 xmlns:context="http://www.springframework.org/schema/context" http://www.springframework.org/schema/context http://www.springf...
分类:
编程语言 时间:
2014-06-22 13:22:33
阅读次数:
244
常规配置quartz可以参考我的另外一篇博文:http://www.cnblogs.com/yangzhilong/p/3349116.htmlspring配置文件里增加:命令空间:http://www.springframework.org/schema/task http://www.spr.....
分类:
编程语言 时间:
2014-06-21 11:32:46
阅读次数:
243