如果您是一個大型組織,更好的做法是使用DataPower。它會爲你做驗證以及各種功能。就最佳實踐而言,我會建議DataPower僅僅是因爲它是爲此設計的,但是您需要確保開發可以驗證的代碼,否則就會在運行時遇到驗證問題。
我也不建議使用@SchemaValidation,因爲這是供應商特定的而不是標準。這就是說,我在爲我的參考Java EE應用程序(不使用任何供應商特定的API)進行攔截器操作時編寫了以下內容。
/**
* Validates the XML streams going in the request and response if the log level
* is {@link Level#FINER} or below against {@value #LOGGER_NAME}. If
* {@link Level#FINEST} is used it will also dump the XML that were sent.
*
* @author Archimedes Trajano
*
*/
public class XmlValidationInterceptor {
/**
* Logger.
*/
private static final Logger LOG;
/**
* Name of the logger.
*/
public static final String LOGGER_NAME = "xml.validation"; //$NON-NLS-1$
static {
LOG = Logger.getLogger(LOGGER_NAME, "Messages"); //$NON-NLS-1$
}
/**
* Contains a composite of multiple schema files into one schema that used
* on all message validations.
*/
private final Schema schema;
/**
* Loads up the schema into memory. This uses the default
*
* @throws SAXException
* problem parsing the schema files.
*/
public XmlValidationInterceptor() throws SAXException {
final SchemaFactory sf = SchemaFactory
.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
schema = sf.newSchema();
}
/**
* Loads up the schema from the specified array of {@link Source} into
* memory.
*
* @param schemaSources
* schema sources.
* @throws SAXException
* problem parsing the schema files.
*/
public XmlValidationInterceptor(final Source... schemaSources)
throws SAXException {
final SchemaFactory sf = SchemaFactory
.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
schema = sf.newSchema(schemaSources);
}
/**
* Writes the object as XML to the logger.
*
* @param param
* object to marshal
* @param context
* invocation context used for logging.
* @throws JAXBException
* problem with the Java binding except schema issues because
* schema validation errors are caught and processed
* differently.
*/
private void marshalObject(final Object param,
final InvocationContext context) throws JAXBException {
if (!param.getClass().isAnnotationPresent(XmlRootElement.class)) {
return;
}
// validate against known schemas
final JAXBContext jaxbContext = JAXBContext.newInstance(param
.getClass());
final Marshaller m = jaxbContext.createMarshaller();
m.setSchema(schema);
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
try {
final StringWriter w = new StringWriter();
m.marshal(param, w);
LOG.finest(w.toString());
} catch (final MarshalException e) {
if (!(e.getLinkedException() instanceof SAXParseException)) {
throw e;
}
final SAXParseException parseException = (SAXParseException) e
.getLinkedException();
LOG.log(Level.SEVERE,
"XmlValidationInterceptor.parseException", // $NON-NLS-1$
new Object[] { context.getMethod(), param,
parseException.getMessage() });
m.setSchema(null);
final StringWriter w = new StringWriter();
m.marshal(param, w);
LOG.finest(w.toString());
}
}
/**
* Validates the data in the parameters and return values.
*
* @param context
* invocation context
* @return invocation return value
* @throws Exception
* invocation exception
*/
@AroundInvoke
public Object validate(final InvocationContext context) throws Exception {
if (!LOG.isLoggable(Level.FINER)) {
return context.proceed();
}
final Object[] params = context.getParameters();
for (final Object param : params) {
marshalObject(param, context);
}
final Object ret = context.proceed();
if (ret != null) {
marshalObject(ret, context);
}
return ret;
}
}
謝謝Santosh。我已經實現了處理程序來驗證傳入的請求。以下鏈接非常有用[鏈接](http://java.dzone.com/articles/jax-ws-payload-validation-and)。 – PrasadB
確實不錯。感謝分享。 – Santosh
鏈接現在壞了=( – secario