1、先设计一个基类BaseBean(1)@MappedSuperclass表示实体类父类package com.life.hibernate.bean;import java.util.Date;import javax.persistence.GeneratedValue;import javax...
分类:
系统相关 时间:
2014-08-11 17:18:12
阅读次数:
297
JSR 303 – Bean Validation 是一个数据验证的规范。 2009年11月正式发布最终版本。
在任何时候,当你要处理一个应用程序的业务逻辑,数据校验是你必须要考虑和面对的事情。应用程序必须通过某种手段来确保输入进来的数据从语义上来讲是正确的。在通常的情况下,应用程序是分层的,比如表现层,业务层,持久化层等,很多时候同样的数据验证逻辑会出现在不同的层,这样就会导致代码冗余和一些管理的问题,比如说语义的一致性等。为了避免这样的情况发生,最好是将验证逻辑与相应的域模型进行绑定,为各个层提供统一的...
分类:
编程语言 时间:
2014-08-11 15:07:52
阅读次数:
291
使用过SSH注解的屌丝们都知道,要想使用注解需要在applicationContext.xml配置文件里面开启注解配置,开启方式如下:1.头部声明需加入xmlns:context="http://www.springframework.org/schema/context"http://www.sp...
分类:
其他好文 时间:
2014-08-11 14:33:32
阅读次数:
261
1 配置ConfigFilter 1.1 配置文件从本地文件系统中读取 <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<property name="filt...
分类:
其他好文 时间:
2014-08-08 18:36:16
阅读次数:
252
Jackson提供接口,可以再json和bean之间互相转换1. 一个例子public class JsonToJavaBean { public static void main(String[] args) { String str="{\"student\":[{\"nam...
分类:
Web程序 时间:
2014-08-08 15:14:56
阅读次数:
207
org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'configController' for bean class [net.mingy...
分类:
编程语言 时间:
2014-08-08 11:50:15
阅读次数:
464
在某种编码环境,由bean注解的参数可能会发生乱码问题. 即可页面web.xml或其他地方都设备UTF-8, 但还是会有这样的问题.首先不要使用model传到视图的数据.第二,不要request.getParamer或request.getAttribute方式,这其他就有解码内置.第三,首先对传进...
分类:
编程语言 时间:
2014-08-08 09:30:15
阅读次数:
240
1、错误描述
严重:Exception starting filter CXFServlet
org.springframework.beans.factory.NoSuchBeanDefinitionException:No bean named 'cxf' is defined
2、错误原因
3、解决办法...
分类:
其他好文 时间:
2014-08-08 02:05:55
阅读次数:
554
@Repository、@Service、@Controller 和 @Component 将类标识为Bean Spring 自 2.0 版本开始,陆续引入了一些注解用于简化 Spring 的开发。@Repository注解便属于最先引入的一批,它用于将数据访问层 (DAO 层 ) ...
分类:
其他好文 时间:
2014-08-07 19:29:20
阅读次数:
183
Spring-MVC中@ResponseBody返回Bean到前台接收这么一串代码,还套着HTML标签:The resource identified by this request is only capable of generating responses with characteristi...
分类:
其他好文 时间:
2014-08-07 12:03:19
阅读次数:
191