- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在开发一个提供 REST 服务的应用程序。我有一些经过测试的代码,我对其运行以查看它是否正常工作。
当针对部署在我的本地 Weblogic 开发服务器上的应用程序运行它时,它工作正常。
但是,当我将其部署到 Red Hat 计算机上的另一个 Weblogic 服务器上时,我收到 400 Bad Request 错误。
这是我用来测试服务的客户端代码:
Client client = Client.create();
//WebResource webResource = client.resource("http://10.1.1.2:7001/NotificationFramework/rest/notifications/createNotification");
WebResource webResource = client.resource("http://rhvm:7003/NotificationFramework/rest/notifications/createNotification");
ClientResponse clientResponse = webResource.type("application/json").post(ClientResponse.class, testJsonObject.toString());
JSONObject response2 = new JSONObject(clientResponse.getEntity(String.class));
System.out.println(response2);
注释行是我本地计算机上的行。
这是我收到的回复:
An error occurred: Server returned HTTP response code: 400 for URL: http://rhvm:7003/NotificationFramework/rest/notifications/createNotification
这里是提供 REST 服务的代码摘录:
@Path("/notifications")
public class RestServices {
@POST
@Path("/createNotification")
@Consumes( {MediaType.APPLICATION_JSON} )
@Produces( {MediaType.APPLICATION_JSON} )
public static NotificationResponse createNotification(JAXBElement<Notification> n) {
// do some stuff
return notificationResponse;
}
我已经尝试在末尾添加一个额外的/。我已经使用 Firefox 的 RESTClient 插件对其进行了测试,得到了完全相同的行为。
任何帮助将不胜感激。
提前致谢。
//编辑
我发现这与 JAXBElement 有关。
以下服务有效:
@POST
@Path("testRest3")
@Consumes( {MediaType.APPLICATION_JSON} )
@Produces({MediaType.APPLICATION_JSON})
public static NotificationResponse testRest3() {
logger.info("yo3");
return new NotificationResponse(101, "yo");
}
但以下情况则不然:
@POST
@Path("testRest4")
@Consumes( {MediaType.APPLICATION_JSON} )
@Produces({MediaType.APPLICATION_JSON})
public static NotificationResponse testRest4(JAXBElement<Notification> n) {
logger.info("yo4");
return new NotificationResponse(101, "yo");
}
我按照pestrella的建议检查了Notification类,发现@XmlRootElement丢失了。我添加了这个,但这仍然没有解决问题。我不确定它是否应该是@Xml..但我对此很陌生。继tutorial来自沃盖拉。
这是我的通知类:
@XmlRootElement
public class Notification {
private int applicationId;
private int notificationId;
private int priority;
private String message;
private String detail;
private String appUrl;
// methods and stuff
}
这是使用 Firefox 的 RESTClient 插件提交的正文:
{"appUrl":"","message":"my message","notificationId":1110001,"detail":"my detail","priority":3,"applicationId":111}
最佳答案
在这种情况下,400
响应可能表示在解码 POST
正文时出现某种错误。
使用@XMLRootElement
就可以了。但是,您在将 JAXB 解码为原始类型时可能会遇到问题(取决于您拥有的版本)。
让 JAXB 解码您的 Notification
对象的最安全方法是使用 Integer
类型而不是原始 int
类型。
@XmlRootElement
public class Notification {
private Integer applicationId;
/* and the rest... */
}
此外,如果您使用 @XmlRootElement
注释,则不需要用 JAXBElement
包装 Notification
对象。尝试删除 JAXBElement
包装器:
@POST
@Path("testRest")
@Consumes({MediaType.APPLICATION_JSON})
@Produces({MediaType.APPLICATION_JSON})
public static NotificationResponse testRest(Notification n) {
logger.info("yo!");
return new NotificationResponse(101, "yo");
}
<小时/>
如果问题仍然存在,那么您始终可以使用 MessageBodyReader
手动解码请求正文。
对 JSON 请求正文执行此操作的典型方法是实现 MessageBodyReader
并使用您选择的 JSON 解析器,例如 Gson 或 Jackson。
@Provider
@Consumes("application/json")
public class CustomJsonReader<T> implements MessageBodyReader<T> {
@Override
public boolean isReadable(Class<?> type, Type genericType,
Annotation[] annotations,MediaType mediaType) {
return true;
}
@Override
public T readFrom(Class<T> type, Type genericType, Annotation[] annotations,
MediaType mediaType, MultivaluedMap<String, String> httpHeaders,
InputStream entityStream) throws IOException, WebApplicationException {
/* Convert the request body (passed in as InputStream) to a String.
* Here I'm using apache commons IOUtils to convert the input stream
*/
StringWriter writer = new StringWriter();
IOUtils.copy(entityStream, writer, "UTF-8");
String json = writer.toString();
/* Use JSON parser to unmarshal the JSON to a complex object */
return new Gson().fromJson(json, genericType);
}
}
关于java - Red Hat 上的 Weblogic 上的同一应用程序收到 400 个错误请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15435899/
我正在尝试在 weblogic (10.3.2.0) 中创建和加载动态类。这是我部署到 weblogic 服务器的 ADF 应用程序。 当我打印时 ((GenericClassLoader)this.
我正在尝试使用 weblogic 部署计划将 init-param 值添加到供应商提供的 .war 文件的 web.xml。 虽然我意识到我可以打开 .war 文件并只在其中编辑文件,但我更喜欢使用部
当我尝试从本地计算机启动 weblogic 服务器(在另一台服务器上运行)时,出现以下错误。我可以毫无问题地停止这个 weblogic 服务器,但我无法启动。 boot.properties 文件中有
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
如果我想在网页中显示图像,并且其 src 是上下文根之外的文件。在 IDE 中,图像显示为已加载。 但是当我测试网页时,没有任何显示。如何配置 weblogic 服务器以允许显示图像。如果没有,无论如
我知道我们用于 WebLogic 的 4 个配置文件: web.xml weblogic.xml weblogic-application.xml 应用程序.xml 使用这些文件的目的是什么? 最佳答
我需要一个自定义属性来为 Weblogic 中的每个服务器 JVM 设置。什么是更好的方法呢? 我知道我们可以指定如下参数: 在域结构 Pane 中,展开服务器节点。 单击要配置的服务器的名称。 在右
我需要使用哪些 URL、端口和 weblogic 服务器端设置? 最佳答案 这取决于您是否要连接到 WebLogic MBean 服务器(域、运行时、编辑)或平台 (JDK) MBean 服务器(请参
当我使用已部署的应用程序启动 Weblogic 实例时,部署有时处于准备状态,而不是事件状态。我必须转到 Weblogic 控制台并手动启动部署,这是相当缓慢且烦人的重复工作。由于这是在开发计算机上完
我想在我的 Web 应用程序中访问在 Weblogic 的自定义 keystore 配置中配置的身份 keystore (JKS)。如何让 weblogic 在不依赖以下环境属性的情况下公开此内容:-
我在我的 mac 机器上运行 Weblogic 10.3 的托管实例。有一天,我尝试启动它,但收到此错误消息 * **
我需要为 Weblogic 中的每个服务器 JVM 设置一个自定义属性。更好的方法是什么? 我知道我们可以指定如下参数: 在“域结构” Pane 中,展开“服务器”节点。 单击要配置的服务器的名称。
当我运行 WLST 脚本 .sh 脚本来设置环境时,为什么在回显时看不到更新的路径? [linbox2 bin]$ ./setWLSEnv.sh CLASSPATH=/directory/ols_wl
我有一个 WebLogic 集群,在该集群上部署了许多主题和使用它们的应用程序。我的应用程序统一显示为警告状态。查看部署中的监控,我看到 MDB 应用程序连接到服务器 #1,但在服务器 #2 上显示如
我想切换到 CentOS 来运行当前部署在 RHEL 下的 WebLogic 11g。人们在 CentOS 上运行 WebLogic 11g 时是否遇到过任何我应该注意的问题? 最佳答案 大约三年前,
我一直在尝试将我们的 Activiti 实现重构为使用 CDI,但遇到了许多问题。我已经花了太多时间试图解决这个问题,但我就是不能放手......我想我现在已经解决了这个问题,在不涉及 Activit
我正在编写代码以在 weblogc 上启动、停止、取消部署和部署我的应用程序。 我的组件需要部署在少数托管服务器上。 当我手动进行新部署时,我可以通过勾选多个框并从下拉菜单中选择启动和停止来并行启动和
我无法从 jdevloper 创建 weblogic 域! 我正在使用 Jdevloper 12.1.2(12c),当我尝试在默认集成 weblogic 服务器 上创建域时,会出现这样的错误 - wl
使用 Weblogic 11g 并希望能够向 weblogic 提供的所有文件添加 header 。 weblogic 前面没有单独的 Web 服务器。找不到配置 weblogic 向 HTTP 响应
我正在尝试将 Jprofiler7 连接到远程 weblogic10.3 托管服务器。我能够在 JProfiler 中连接并查看管理控制台线程和内存使用情况,但不能查看部署在托管服务器上的应用程序。
我是一名优秀的程序员,十分优秀!