本文整理汇总了Java中javax.jms.JMSException.getMessage方法的典型用法代码示例。如果您正苦于以下问题:Java JMSException.getMessage方法的具体用法?Java JMSException.getMessage怎么用?Java JMSException.getMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.jms.JMSException
的用法示例。
在下文中一共展示了JMSException.getMessage方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendRequest
import javax.jms.JMSException; //导入方法依赖的package包/类
public String sendRequest(Optional<String> routeId) {
DetailsRequest req = new DetailsRequest(routeId.orElse("asdf"));
try {
TextMessage msg = context.createTextMessage(JsonMapper.serializeOrThrow(req));
msg.setJMSDeliveryMode(DeliveryMode.NON_PERSISTENT);
Queue answerQ = context.createTemporaryQueue();
msg.setJMSReplyTo(answerQ);
context.createProducer().send(minQ, msg);
Message response = context.createConsumer(answerQ).receive();
if (response instanceof TextMessage) {
return ((TextMessage) response).getText();
}
return "";
} catch (JMSException e) {
return e.getMessage();
}
}
示例2: sendRequest
import javax.jms.JMSException; //导入方法依赖的package包/类
public String sendRequest(Optional<String> routeId) {
CompactRequest req = new CompactRequest(routeId.orElse("asdf"));
try {
TextMessage msg = context.createTextMessage(JsonMapper.serializeOrThrow(req));
msg.setJMSDeliveryMode(DeliveryMode.NON_PERSISTENT);
Queue answerQ = context.createTemporaryQueue();
msg.setJMSReplyTo(answerQ);
context.createProducer().send(minQ, msg);
Message response = context.createConsumer(answerQ).receive();
if (response instanceof TextMessage) {
return ((TextMessage) response).getText();
}
return "";
} catch (JMSException e) {
return e.getMessage();
}
}
示例3: doGetBody
import javax.jms.JMSException; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
protected <T> T doGetBody(Class<T> asType) throws JMSException {
try {
return (T) getObject();
} catch (JMSException e) {
throw new MessageFormatException("Failed to read Object: " + e.getMessage());
}
}
示例4: ManagedConnectionImpl
import javax.jms.JMSException; //导入方法依赖的package包/类
public ManagedConnectionImpl(ManagedConnectionFactoryImpl mcf,
Subject subject,
ExceptionSorter exceptionSorter,
ConnectionRequestInfoImpl cri) throws ResourceException {
super(mcf, new CredentialExtractor(subject, cri, mcf), exceptionSorter);
this.cri = cri;
try {
boolean transacted = cri != null && cri.isTransacted();
int acknowledgeMode = Session.AUTO_ACKNOWLEDGE;
String userName = credentialExtractor.getUserName();
String password = credentialExtractor.getPassword();
if (userName != null && password != null) {
connection = mcf.getConnectionFactory().createConnection(userName, password);
xaConnection = mcf.getXaConnectionFactory().createXAConnection(userName, password);
} else {
connection = mcf.getConnectionFactory().createConnection();
xaConnection = mcf.getXaConnectionFactory().createXAConnection();
}
connection.setExceptionListener(this::onException);
xaConnection.setExceptionListener(this::onException);
session = connection.createSession(transacted, acknowledgeMode);
xaSession = xaConnection.createXASession();
xaSessionSession = xaSession.getSession();
xaResource = xaSession.getXAResource();
} catch (JMSException e) {
throw new ResourceException(e.getMessage(), e);
}
}
示例5: convertToRuntimeException
import javax.jms.JMSException; //导入方法依赖的package包/类
public static JMSRuntimeException convertToRuntimeException(JMSException e) {
if (e instanceof javax.jms.IllegalStateException) {
return new IllegalStateRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof InvalidClientIDException) {
return new InvalidClientIDRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof InvalidDestinationException) {
return new InvalidDestinationRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof InvalidSelectorException) {
return new InvalidSelectorRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof JMSSecurityException) {
return new JMSSecurityRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof MessageFormatException) {
return new MessageFormatRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof MessageNotWriteableException) {
return new MessageNotWriteableRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof ResourceAllocationException) {
return new ResourceAllocationRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof TransactionInProgressException) {
return new TransactionInProgressRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
if (e instanceof TransactionRolledBackException) {
return new TransactionRolledBackRuntimeException(e.getMessage(), e.getErrorCode(), e);
}
return new JMSRuntimeException(e.getMessage(), e.getErrorCode(), e);
}