我使用jaxws:client标记和spring来消费webservices。在上面的过程中,我想在调用webservice之前和之后使用cxf拦截器。
iam能够与cxf拦截器一起使用webservice返回正确的皂故障和成功响应,但在Http状态代码:404的情况下以及服务关闭时不会调用inFaultInterceptor...连接异常...
分析错误后...我发现异常是从https://cxf.apache.org/javadoc/latest/org/apache/cxf/interceptor/MessageSenderInterceptor.MessageSenderEndingInterceptor.html抛出的
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.cxf.interceptor;
import java.io.IOException;
import java.util.ResourceBundle;
import org.apache.cxf.common.i18n.BundleUtils;
import org.apache.cxf.message.Exchange;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.AbstractPhaseInterceptor;
import org.apache.cxf.phase.Phase;
import org.apache.cxf.transport.Conduit;
/**
* Takes the Conduit from the exchange and sends the message through it.
*/
public class MessageSenderInterceptor extends AbstractPhaseInterceptor<Message> {
private static final ResourceBundle BUNDLE = BundleUtils.getBundle(MessageSenderInterceptor.class);
private MessageSenderEndingInterceptor ending = new MessageSenderEndingInterceptor();
public MessageSenderInterceptor() {
super(Phase.PREPARE_SEND);
}
public void handleMessage(Message message) {
try {
getConduit(message).prepare(message);
} catch (IOException ex) {
throw new Fault(new org.apache.cxf.common.i18n.Message("COULD_NOT_SEND", BUNDLE), ex);
}
// Add a final interceptor to close the conduit
message.getInterceptorChain().add(ending);
}
public class MessageSenderEndingInterceptor extends AbstractPhaseInterceptor<Message> {
public MessageSenderEndingInterceptor() {
super(Phase.PREPARE_SEND_ENDING);
}
public void handleMessage(Message message) throws Fault {
try {
getConduit(message).close(message);
} catch (IOException e) {
throw new Fault(new org.apache.cxf.common.i18n.Message("COULD_NOT_SEND", BUNDLE), e);
}
}
}
private Conduit getConduit(Message message) {
Exchange exchange = message.getExchange();
Conduit conduit = exchange.getConduit(message);
if (conduit == null
&& (exchange.getOutMessage() != null
|| exchange.getOutFaultMessage() != null)) {
conduit = OutgoingChainInterceptor.getBackChannelConduit(message);
}
return conduit;
}
}
我的问题是:如何在我们的项目中重写这个类,以便定制内部类的handleMessage?在抛出cxf fault with Cannot send消息之前,我必须在故障侦听器中获得控制权。。。
您可以使用添加到CXF总线的FaultListener。监听器还将捕获http异常(示例为404),允许您在将其引发到调用方法之前执行代码。
举个例子
public class CxfFaultListenerImpl implements FaultListener{
public boolean faultOccurred(final Exception exception,final String description,final Message message) {
//return false to avoid standard CXF logging of exception
return false;
}
}
Spring CXF配置
<cxf:bus>
<cxf:properties>
<entry key="org.apache.cxf.logging.FaultListener">
<bean id="cxfFaultListener" class="CxfFaultListenerImpl" />
</entry>
</cxf:properties>
</cxf:bus>
问题内容: 我必须创建许多非常相似的类,它们之间只有一种方法不同。因此,我认为创建抽象类将是实现此目标的好方法。但是我要覆盖的方法(例如,方法foo())没有默认行为。我不想保留任何默认实现,而是强制所有扩展类都实现此方法。我该怎么做呢? 问题答案: 您需要在基类上使用 抽象 方法: 这样,您无需指定默认行为 , 而是可以强制从继承的非抽象类指定的实现。
所以我有一个Laravel控制器: 目前,我正在使用artisan(在引擎盖下运行PHP的内置开发Web服务器)运行应用程序: 我想将控制台消息记录到artisan进程的管道中。
问题内容: 通用方法: 所需的覆盖方法: 实现此目的的Java语法是什么? 问题答案: 更好的设计是。
假设我有以下带有其父类的控制器: 通过调用以下URL检索数据: 服务器请求: 因此我计划在父控制器中从更改为: 然后介绍一个“遗留”控制器: 这就是我所苦恼的,我找不到任何与Spring相关的东西,不管是在StackOverflow还是其他地方。 另外,我有许多控制器和许多方法endpoint,所以我不能手动完成这一操作(例如,通过编辑每个@RequestMapping/@GetMapping注释
问题内容: 有什么办法告诉log4j将其日志写入文件和控制台?谢谢,有我的财产: 问题答案: 您的root记录器定义有点混乱。请参阅log4j文档。 这是标准的Java属性文件,这意味着将行视为键=值对。您的第二行覆盖了第一行,这说明了为什么在附加程序上看不到任何内容。 您需要将两个定义合并为一个。您似乎想让消息进入控制台,消息进入文件。根记录器只能具有 一个 级别,因此您需要更改配置,以便附加程
问题内容: 是否可以写字符串或登录控制台? 我的意思是说 就像在JSP中一样,如果我们打印,则它将在控制台而不是页面上。 问题答案: 火狐浏览器 在Firefox上,您可以使用名为FirePHP的扩展程序,该扩展程序可以将信息从PHP应用程序记录和转储到控制台。这是很棒的Web开发扩展Firebug的附加组件。 http://www.studytrails.com/blog/using-firep