随笔分类 - Spring
1
Spring notes!
摘要:Spring与JSON当输出中文有乱码时,可以直接在@RequestMapping(produces="application/json;charset=UTF-8")中加上produces即可解决。我在使用@ResponseBody String返回JSON数据时老是给我报错:JSON.parse() expected property name or '}',搞了很久才找到原因,需要把单引号改成双引号就可以解决问题! 1 @RequestMapping(value = "/home/getCategories", method = R
阅读全文
摘要:Spring 3.0.5的,更细颗粒化的缓存设置,更方便的注解,可以具体到把每个方式的返回值做缓存,需要 ehcache-spring-annotations-1.1.xapplicationContext.xml 1 <beans xmlns="http://www.springframework.org/schema/beans" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xmlns:aop="http://www.springframework.org/sch
阅读全文
摘要:A、@SessionAttributesorg.springframework.web.bind.annotation.SessionAttributespublic @interface SessionAttributesAnnotation that indicates the session attributes that a specific handler uses. This will typically list the names of model attributes which should be transparently stored in the session or
阅读全文
摘要:@ExceptionHandlerorg.springframework.web.bind.annotation.ExceptionHandlerpublic @interface ExceptionHandlerAnnotation for handling exceptions in specific handler classes and/or handler methods. Provides consistent style between Servlet and Portlet environments, with the semantics adapting to the con
阅读全文
摘要:@InitBinderorg.springframework.web.bind.annotation.InitBinderpublic @interface InitBinderAnnotation that identifies methods which initialize the WebDataBinder which will be used for populating command and form object arguments of annotated handler methods.由这个注释标识的方法,它初始化WebDataBinder,这个WebDataBinder
阅读全文
摘要:A、@ModelAttributeAnnotation that binds a method parameter or method return value to a named model attribute, exposed to a web view. Supported for RequestMapping annotated handler classes.在被@RequestMapping注释的处理器类中,这个注释可以绑定一个方法参数或绑定一个方法的返回值到一个命名的模型属性,提供给一个视图。Can be used to expose command objects to a
阅读全文
摘要:下列参数一般都和@RequestMapping配合使用。A、@CookieValueorg.springframework.web.bind.annotation.CookieValuepublic @interface CookieValueAnnotation which indicates that a method parameter should be bound to an HTTP cookie. Supported for annotated handler methods in Servlet and Portlet environments.这个注释表示一个方法参数绑定到一
阅读全文
摘要:A、@RequestMappingorg.springframework.web.bind.annotation.RequestMappingAnnotation for mapping web requests onto specific handler classes and/or handler methods. Provides consistent style between Servlet and Portlet environments, with the semantics adapting to the concrete environment.@RequestMapping
阅读全文
摘要:基于注释的控制器配置需要Java 5以上的版本支持。这种注释支持servlet MVC和Portlet MVC。通过这种方式实现的控制器不需要继承特定的基础类,或实现特定的接口。A、Dispatcher配置文件DispatcherServlet和DispatcherPortlet都默认支持注释配置控制器。以DispatcherServlet为例,它默认支持实现HandlerMapping接口的DefaultAnnotationHandlerMapping和实现HandlerAdapter接口的AnnotationMethodHandlerAdapter来支持注释配置控制器。所有我们无需在Dis
阅读全文
摘要:URLPath匹配原则路 径匹配原则(Path Matching) Spring MVC中的路径匹配要比标准的web.xml要灵活的多。默认的策略实现了 org.springframework.util.AntPathMatcher,就像名字提示的那样,路径模式是使用了Apache Ant的样式路径,Apache Ant样式的路径有三种通配符匹配方法(在下面的表格中列出)这些可以组合出很多种灵活的路径模式Table Ant Wildcard CharactersWildcardDescription?匹配任何单字符*匹配0或者任意数量的字符**匹配0或者更多的目录Table Example A
阅读全文
摘要:先让我们来看一段摘自《Spring 2.5 Reference 中文版》(http://www.redsaga.com/spring_ref/2.5/spring-reference.pdf)的一段关于FileUpload的开场描述: "Spring支持web应用中的分段文件上传。这种支持是由即插即用的MultipartResolver来实现。这些解析器都定义在org.springframework.web.multipart包里。Sprig提供了现成的MultipartResolver可以支持Commons FileUpload(http://jakarta.apache.org/
阅读全文
摘要:Since I spent a lot of time on this issue, I thought I'd share my solution. Since spring 3.0.4, there is a configuration parameter that is called<mvc:resources/>(more about that on thereference documentation website) which can be used to serve static resources while still using the Dispatc
阅读全文
摘要:平时写mapping的文件需要一个一个的放到配置文件里,比如1.<propertyname="mappingResources">2.<list>3.<value>model/Classes.hbm.xml</value>4.<value>model/Parent.hbm.xml</value>5.<value>model/Child.hbm.xml</value>6.<value>model/User.hbm.xml</value>7.</list
阅读全文
摘要:With the advent of Spring 2.0, it has become possible to start using the Hibernate Session API directly again. The question is whether or not it is wise to abandon the use of the HibernateTemplate when working with Hibernate, or any other template-based approaches Spring features.USING SPRING XXXTEM
阅读全文
摘要:/** * Copyright (c) 2005-2011 springside.org.cn * * Licensed under the Apache License, Version 2.0 (the "License"); * * $Id$ */package org.springside.modules.orm.hibernate;import java.io.Serializable;import java.util.Collection;import java.util.List;import java.util.Map;import org.hibernat
阅读全文
摘要:首先遇到的问题就是HibernateDaoSupport引起的,程序中所有的DAO都继承自HibernateDaoSupport,而HibernateDaoSupport需要注入sessionfactory或者hibernateTemplate,所以出现"sessionFactory " or "hibernateTemplate " is required异常,但是在spring配置文件中加入sessionFactory的bean配置以后,仍然出现异常。后来看了网上的解决方式 ,原因是spring.xml中没有加上default-autowire=&q
阅读全文
摘要:整合spring和DWR时出现了CSRF Security Error。解决办法:修改 web.xml 中 DWR配置信息原:<servlet> <servlet-name>dwr-invoker</servlet-name> <servlet-class>org.directwebremoting.spring.DwrSpringServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value&g
阅读全文
摘要:什么是Spring,他有什么特点?Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架。◆轻量——从大小与开销两方面而言Spring都是轻量的。完整的Spring框架可以在一个大小只有1MB多的JAR文件里发布。并 且Spring所需的处理开销也是微不足道的。此外,Spring是非侵入式的:典型地,Spring应用中的对象不依赖于Spring的特定类。◆控制反转——Spring通过一种称作控制反转(IoC)的技术促进了松耦 合。当应用了IoC,一个对象依赖的其它对象会通过被动的方式传递进来,而不是这个对象自己创建或者查找依赖对象。你可以认为IoC与JNDI相反——不 是对
阅读全文
摘要:Spring已经为我们实现了AOP技术,我们在使用的过程中只要进行简单配置就可以使用了,但在工作中我发现只会使用这些东西是远远不够的,特别是我们使用注解配置AOP的时候,虽然方便简单,但是原理我们根本不懂,这有时候会影响我们的开发效率,不懂原理,我们永远是初级。现在我就当自己根本不知道Spring的AOP,一点点往下分析:现在我们在项目中有一个需求,就是如果我们要访问某一个类中的所有方法,那么必须在访问之前打印一句话,比方说:publicclassCardServiceImplimplementsCardService{publicvoiddelete() {System.out.printl
阅读全文
摘要:今天在做Spring MVC练习的时候,使用spring的注解方式来写了一个简单的表单页面,但结果老是报错:"Neither BindingResult nor plain target object for bean name customerForm"。在google百度搜了大半天,综合了几个回答才返现是需要为表单添加一个modelAttribute属性,不然spring不知道将数据存放到什么地方去。//Customer.javapackage info.iloveec.springtags;import org.springframework.stereotype.C
阅读全文
1