Spring为我们提供了:org.springframework.web.servlet.HandlerInterceptor接口,org.springframework.web.servlet.handler.HandlerInterceptorAdapter适配器,实现这个接口或继承此类,可以非常方便的实现自己的拦截器。有以下三个方法:Action之前执行public boolean preH...
分类:
编程语言 时间:
2014-05-22 11:53:48
阅读次数:
241
文件配置如下:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:sch...
分类:
编程语言 时间:
2014-05-22 07:38:58
阅读次数:
388
1.Spring的框架中,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer类可以将.properties(key/value形式)文件中
一些动态设定的值(value),在XML中替换为占位该键($key$)的值,
.properties文件可以根据客户需求,自定义一些相关的参数,这样的设计可提供程序的...
分类:
数据库 时间:
2014-05-18 14:06:37
阅读次数:
509
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is o...
分类:
数据库 时间:
2014-05-18 06:19:21
阅读次数:
547
这个配置只能用来使用最基本的spring
bean的使用。只需要这些包(MAVEN的POM.XML文件): org.springframework spring-core 4.0.0.RELEASE
org.springframework spring-context 4.0.0.RELEASE.....
分类:
编程语言 时间:
2014-05-15 22:13:51
阅读次数:
355
配置如下:
①web.xml配置
remote
org.springframework.web.servlet.DispatcherServlet
1
remote
/remotin...
分类:
编程语言 时间:
2014-05-15 18:32:21
阅读次数:
345
所需要的包:
junit需要是4.5以上
org.springframework.test-XXX.RELEASE.jar
package test;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
i...
分类:
编程语言 时间:
2014-05-15 04:21:45
阅读次数:
357
记录整合中缺少 JAR 文件引起的异常版本 Spring 3+ Hibernate 4+
JPA 1、Exception in thread "main"
org.springframework.beans.factory.parsing.BeanDefinitionParsingExceptio....
分类:
编程语言 时间:
2014-05-14 23:25:27
阅读次数:
488
这里只是做简单的记录如何实现。
一、基于配置文件的实现
①编写需要调度的类
package com.study;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
//@Component
public cla...
分类:
编程语言 时间:
2014-05-14 19:21:22
阅读次数:
279
1.JavaEE5API(含JSFAPI)http://java.sun.com/javaee/5/docs/api/2.HibernateAPIDocumentation(3.2.2.ga)http://www.hibernate.org/hib_docs/v3/api/3.SpringFrameworkAPI2.5http://static.springframework.org/spring/docs/2.5.x/api/index.html4.1Struts1.3.8APIhttp://struts..
分类:
编程语言 时间:
2014-05-14 16:51:34
阅读次数:
407