Class JmsInvokerServiceExporter
- java.lang.Object
- org.springframework.remoting.support.RemotingSupport
- org.springframework.remoting.support.RemoteExporter
- org.springframework.remoting.support.RemoteInvocationBasedExporter
- org.springframework.jms.remoting.JmsInvokerServiceExporter
- All Implemented Interfaces:
Aware,BeanClassLoaderAware,InitializingBean,SessionAwareMessageListener<Message>
public class JmsInvokerServiceExporter extends RemoteInvocationBasedExporter implements SessionAwareMessageListener<Message>, InitializingBean
JMS message listener that exports the specified service bean as a JMS service endpoint, accessible via a JMS invoker proxy.Note that this class implements Spring's
SessionAwareMessageListenerinterface, since it requires access to the active JMS Session. Hence, this class can only be used with message listener containers which support the SessionAwareMessageListener interface (e.g. Spring'sDefaultMessageListenerContainer).Thanks to James Strachan for the original prototype that this JMS invoker mechanism was inspired by!
- Since:
- 2.0
- Author:
- Juergen Hoeller, James Strachan
- See Also:
JmsInvokerClientInterceptor,JmsInvokerProxyFactoryBean
Field Summary
Fields inherited from class org.springframework.remoting.support.RemotingSupport
logger
Constructor Summary
Constructors Constructor Description JmsInvokerServiceExporter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.protected MessagecreateResponseMessage(Message request, Session session, RemoteInvocationResult result)Create the invocation result response message.protected RemoteInvocationonInvalidRequest(Message requestMessage)Callback that is invoked byreadRemoteInvocation(javax.jms.Message)when it encounters an invalid request message.voidonMessage(Message requestMessage, Session session)Callback for processing a received JMS message.protected RemoteInvocationreadRemoteInvocation(Message requestMessage)Read a RemoteInvocation from the given JMS message.voidsetIgnoreInvalidRequests(boolean ignoreInvalidRequests)Set whether invalidly formatted messages should be discarded.voidsetMessageConverter(MessageConverter messageConverter)Specify the MessageConverter to use for turning request messages intoRemoteInvocationobjects, as well asRemoteInvocationResultobjects into response messages.protected voidwriteRemoteInvocationResult(Message requestMessage, Session session, RemoteInvocationResult result)Send the given RemoteInvocationResult as a JMS message to the originator.Methods inherited from class org.springframework.remoting.support.RemoteInvocationBasedExporter
getRemoteInvocationExecutor, invoke, invokeAndCreateResult, setRemoteInvocationExecutor
Methods inherited from class org.springframework.remoting.support.RemoteExporter
checkService, checkServiceInterface, getExporterName, getProxyForService, getService, getServiceInterface, setInterceptors, setRegisterTraceInterceptor, setService, setServiceInterface
Methods inherited from class org.springframework.remoting.support.RemotingSupport
getBeanClassLoader, overrideThreadContextClassLoader, resetThreadContextClassLoader, setBeanClassLoader
Constructor Detail
JmsInvokerServiceExporter
public JmsInvokerServiceExporter()
Method Detail
setMessageConverter
public void setMessageConverter(MessageConverter messageConverter)
Specify the MessageConverter to use for turning request messages intoRemoteInvocationobjects, as well asRemoteInvocationResultobjects into response messages.Default is a
SimpleMessageConverter, using a standard JMSObjectMessagefor each invocation / invocation result object.Custom implementations may generally adapt Serializables into special kinds of messages, or might be specifically tailored for translating RemoteInvocation(Result)s into specific kinds of messages.
setIgnoreInvalidRequests
public void setIgnoreInvalidRequests(boolean ignoreInvalidRequests)
Set whether invalidly formatted messages should be discarded. Default is "true".Switch this flag to "false" to throw an exception back to the listener container. This will typically lead to redelivery of the message, which is usually undesirable - since the message content will be the same (that is, still invalid).
afterPropertiesSet
public void afterPropertiesSet()
Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSetin interfaceInitializingBean
onMessage
public void onMessage(Message requestMessage, Session session) throws JMSException
Description copied from interface:SessionAwareMessageListenerCallback for processing a received JMS message.Implementors are supposed to process the given Message, typically sending reply messages through the given Session.
- Specified by:
onMessagein interfaceSessionAwareMessageListener<Message>- Parameters:
requestMessage- the received JMS message (nevernull)session- the underlying JMS Session (nevernull)- Throws:
JMSException- if thrown by JMS methods
readRemoteInvocation
protected RemoteInvocation readRemoteInvocation(Message requestMessage) throws JMSException
Read a RemoteInvocation from the given JMS message.- Parameters:
requestMessage- current request message- Returns:
- the RemoteInvocation object (or
nullin case of an invalid message that will simply be ignored) - Throws:
JMSException- in case of message access failure
writeRemoteInvocationResult
protected void writeRemoteInvocationResult(Message requestMessage, Session session, RemoteInvocationResult result) throws JMSException
Send the given RemoteInvocationResult as a JMS message to the originator.- Parameters:
requestMessage- current request messagesession- the JMS Session to useresult- the RemoteInvocationResult object- Throws:
JMSException- if thrown by trying to send the message
createResponseMessage
protected Message createResponseMessage(Message request, Session session, RemoteInvocationResult result) throws JMSException
Create the invocation result response message.The default implementation creates a JMS ObjectMessage for the given RemoteInvocationResult object. It sets the response's correlation id to the request message's correlation id, if any; otherwise to the request message id.
- Parameters:
request- the original request messagesession- the JMS session to useresult- the invocation result- Returns:
- the message response to send
- Throws:
JMSException- if creating the messsage failed
onInvalidRequest
protected RemoteInvocation onInvalidRequest(Message requestMessage) throws JMSException
Callback that is invoked byreadRemoteInvocation(javax.jms.Message)when it encounters an invalid request message.The default implementation either discards the invalid message or throws a MessageFormatException - according to the "ignoreInvalidRequests" flag, which is set to "true" (that is, discard invalid messages) by default.
- Parameters:
requestMessage- the invalid request message- Returns:
- the RemoteInvocation to expose for the invalid request (typically
nullin case of an invalid message that will simply be ignored) - Throws:
JMSException- in case of the invalid request supposed to lead to an exception (instead of ignoring it)- See Also:
readRemoteInvocation(javax.jms.Message),setIgnoreInvalidRequests(boolean)