现在的位置: 首页 > 综合 > 正文

spring MVC 3.0 和 hibernate-validation5.0 JSR-303 验证

2014年01月26日 ⁄ 综合 ⁄ 共 2200字 ⁄ 字号 评论关闭

最近了解下spring MVC ,做到它的 JSR-303 验证,引用spring的messageSource时候,碰到个问题,下面这样配置后:

r控制台一片惨红,仔细看看,原来是有个ClassNotFind了,

org.hibernate.validator.resourceloading.ResourceBundleLocator

就是这个类,找了半天,才找到引用这个类:org.springframework.validation.beanvalidation.MessageSourceResourceBundleLocator

/*
 * Copyright 2002-2010 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.validation.beanvalidation;

import java.util.Locale;
import java.util.ResourceBundle;

import org.hibernate.validator.resourceloading.ResourceBundleLocator;

import org.springframework.context.MessageSource;
import org.springframework.context.support.MessageSourceResourceBundle;
import org.springframework.util.Assert;

/**
 * Implementation of Hibernate Validator 4.1's {@link ResourceBundleLocator} interface,
 * exposing a Spring {@link MessageSource} as localized {@link MessageSourceResourceBundle}.
 *
 * @author Juergen Hoeller
 * @since 3.0.4
 * @see ResourceBundleLocator
 * @see MessageSource
 * @see MessageSourceResourceBundle
 */
public class MessageSourceResourceBundleLocator implements ResourceBundleLocator {

private final MessageSource messageSource;

/**
* Build a MessageSourceResourceBundleLocator for the given MessageSource.
* @param messageSource the Spring MessageSource to wrap
*/
public MessageSourceResourceBundleLocator(MessageSource messageSource) {
Assert.notNull(messageSource, "MessageSource must not be null");
this.messageSource = messageSource;
}

public ResourceBundle getResourceBundle(Locale locale) {
return new MessageSourceResourceBundle(this.messageSource, locale);
}

}

就是他实现了org.hibernate.validator.resourceloading.ResourceBundleLocator接口的,

但是hibernate-validation5.0的这个包没这个接口,用工具查一下,发现在org.hibernate.spi.validator.resourceloading这个包下呢。

于是就修改spring-context 这个jar包里的MessageSourceResourceBundleLocator类,发现直接将编译好的class放进去红的更惨,

只好把这个jar都重编译了,运行后,xml和注解的验证全部都是我自己定义了

抱歉!评论已关闭.