- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
JAX-RS Post 方法给出 NullPointerException。
Severe: java.lang.NullPointerException
at fi.allu.savukelaskuri.ConsumptionResource.postJson(ConsumptionResource.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
这是使用 JDBC 的 MySQL 数据库连接:
import java.sql.*;
public class Database {
protected Connection conn = null;
protected PreparedStatement preparedstatement = null;
protected Statement statement = null;
protected ResultSet resultset = null;
public boolean openCOnnection() {
boolean ok = true;
try {
Class.forName("com.mysql.cj.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/savukelaskuri?serverTimezone=UTC", "root", "");
} catch (Exception e) {
e.printStackTrace();
ok = false;
}
return ok;
}
public boolean closeConnection() {
boolean ok = true;
try {
this.conn.close();
} catch (Exception e) {
ok = false;
}
return ok;
}
}
这是 REST 根资源类和所有方法:
import javax.ws.rs.core.Context;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.Produces;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PUT;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.MediaType;
import org.json.JSONArray;
import org.json.JSONObject;
@Path("consumptions")
public class ConsumptionResource extends Database {
JSONArray jsonarray = new JSONArray();
JSONObject jsonobject = null;
@Context
private UriInfo context;
public ConsumptionResource() {
this.openCOnnection();
}
@GET
@Produces(MediaType.APPLICATION_JSON)
public String getJson() {
try {
statement = conn.createStatement();
String sql = "SELECT * FROM kulutus";
resultset = statement.executeQuery(sql);
while (resultset.next()) {
jsonobject = new JSONObject();
jsonobject.put("id", resultset.getInt("id"));
jsonobject.put("pvm", resultset.getString("pvm"));
jsonobject.put("klo", resultset.getString("klo"));
jsonobject.put("kulutus", resultset.getInt("kulutus"));
jsonarray.put(jsonobject);
}
this.closeConnection();
} catch (Exception e) {
e.printStackTrace();
}
return jsonarray.toString(4);
}
@POST
@Consumes(MediaType.APPLICATION_JSON)
public boolean postJson(String content) {
boolean ok = true;
JSONObject json = new JSONObject(content);
String date = json.getString("date");
String time = json.getString("time");
String consumption = json.getString("consumption");
try {
String sql = "INSERT INTO kulutus (pvm, klo, kulutus) VALUES (?,?,?)";
this.preparedstatement.setString(1, date);
this.preparedstatement.setString(2, time);
this.preparedstatement.setString(3, consumption);
this.closeConnection();
} catch (Exception e) {
e.printStackTrace();
ok = false;
}
return ok;
}
@DELETE
public boolean deleteJson() {
boolean ok = true;
try {
statement = conn.createStatement();
String sql = "DELETE FROM kulutus";
statement.executeQuery(sql);
this.closeConnection();
} catch (Exception e) {
e.printStackTrace();
ok = false;
}
return ok;
}
@GET
@Path("{id}")
@Produces(MediaType.APPLICATION_JSON)
public String getId(@PathParam("id") String id) {
JSONArray jsonarray = new JSONArray();
try {
String sql = "SELECT * FROM kulutus WHERE id = ?";
this.preparedstatement = this.conn.prepareStatement(sql);
this.preparedstatement.setString(1, id);
this.resultset = this.preparedstatement.executeQuery();
while (resultset.next()) {
JSONObject jsonobjekti = new JSONObject();
jsonobjekti.put("date", resultset.getString("pvm"));
jsonobjekti.put("time", resultset.getString("klo"));
jsonobjekti.put("consumption", resultset.getString("kulutus"));
jsonarray.put(jsonobjekti);
}
this.closeConnection();
} catch (Exception e) {
e.printStackTrace();
}
return jsonarray.getString(4);
}
@PUT
@Path("{id}")
@Consumes(MediaType.APPLICATION_JSON)
public boolean putJson(@PathParam("id") String id, String content) {
boolean ok = true;
JSONObject json = new JSONObject(content);
String date = json.getString("pvm");
String time = json.getString("klo");
String consumption = json.getString("kulutus");
try {
String sql = "UPDATE kulutus SET pvm = ?, klo = ?, kulutus = ? WHERE id = ?";
this.preparedstatement = conn.prepareStatement(sql);
this.preparedstatement.setString(1, date);
this.preparedstatement.setString(2, time);
this.preparedstatement.setString(3, consumption);
this.preparedstatement.setString(4, String.valueOf(id));
this.preparedstatement.execute();
this.closeConnection();
} catch (Exception e) {
e.printStackTrace();
ok = false;
}
return ok;
}
@DELETE
@Path("{id}")
public boolean deleteId(@PathParam("id") String id) {
boolean ok = true;
try {
String sql = "DELETE FROM kulutus WJERE id = ?";
this.preparedstatement = conn.prepareStatement(sql);
this.preparedstatement.setInt(1, Integer.valueOf(id));
} catch (Exception e) {
e.printStackTrace();
ok = false;
}
return ok;
}
}
我希望结果能够成功发布到数据库,但我却收到了 NullPointerException。
编辑:我现在将代码更改为英文,因此应该更容易阅读。
最佳答案
我怀疑下面的行抛出 NullPointerException。我没有看到 preparedstatement
在 Database
中的任何位置被初始化并且它为 null。
this.preparedstatement.setString(1, date);
关于java - JAX-RS POST NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54218785/
Apache CXF 可以完成任务。但我想在没有任何 spring 依赖的情况下组合它。提前谢谢你! 最佳答案 JAX-WS 和 JAX-RS 都是 Java EE 6 的一部分.因此,您可以在不使用
Apache CXF 可以完成任务。但我想在没有任何 spring 依赖的情况下组合它。提前谢谢你! 最佳答案 JAX-WS 和 JAX-RS 都是 Java EE 6 的一部分.因此,您可以在不使用
所以我的意思是你有一个分类特征 $X$(假设你已经把它变成了整数)并说你想使用特征 $A$ 将它嵌入到某个维度中,其中 $A$ 是 arity x n_embed . 通常的做法是什么?使用 for
所以我的意思是你有一个分类特征 $X$(假设你已经把它变成了整数)并说你想使用特征 $A$ 将它嵌入到某个维度中,其中 $A$ 是 arity x n_embed . 通常的做法是什么?使用 for
我知道网上有很多文档主要描述技术差异。 但是我很想知道您更喜欢一种特定类型而不是其他类型的常见用例是什么? 这些偏好是因为集成模式/产品支持特定类型吗? 最佳答案 谢谢你的回答。然而实际用例差异以及何
我想将 CXF 与 Google Guice 集成。我已经在我的项目中使用 Guice,并且我想避免添加额外的依赖项。 CXF 是我的选择,因为要求之一是能够向服务用户提供 XML、JSON、JSON
来自 JSR-339: For simplicity, JAX-RS implementations are NOT REQUIRED to support processing groups oth
我开始使用 JAX WS 研究 Java Web 服务。我正在阅读的书的第一章展示了如何仅使用 java SE 构建和部署简单的 jax ws web 服务。特别是,Web 服务是通过 Endpoin
在 JAX 的快速入门教程中,我发现可以使用以下代码行为可微函数 fun 高效地计算 Hessian 矩阵: from jax import jacfwd, jacrev def hessian(fu
JAX-RS 提供了 StreamingOutput 接口(interface),我们可以实现它来对我们的响应主体进行原始流处理。 public interface StreamingOutput {
有没有办法获得java.lang.reflect.Method为给定的 @Path 调用的方法(用 HttpServletRequest 注释) ? 这是我的用例:我在 Java EE 中 Filte
我接到了一家公司的任务,该任务向我发送了一台已完成所有设置的虚拟机。任务是我必须创建一个 API 来从数据库中检索人员详细信息并显示它。 问题是,当我运行应用程序时,服务器返回一个包含 hello w
我有一个 POST 方法调用,它接受很少的表单参数。我希望 JAX-RS 能够处理不存在特定表单参数的情况。 示例: @POST @Produces (MediaType.APPLICATION_JS
我有 JAX-RS 网络应用程序,我想记录从获取请求到响应的时间量。在带有 servlet 过滤器的 Spring Boot 中很容易。但是我的应用程序中的过滤器无法正常工作: @Provider p
使用以下网址。 http://doma.in/context/resource/some/.../undefined 我想获取 ../resource 之后的路径名,即 /some/.../undef
我编写了 2 个 Web 服务,一个使用 Jax-WS,一个使用 Jax-RPC。他们只是返回一个字符串。 我使用 jMeter 进行了压力测试,奇怪的是,Jax-RPC 速度更快。 我什么时候才能在
我花了几个小时在嵌入式 Jetty 9.1.0.v20131115 和 RESTEasy 3.0.5.Final 中安装自定义登录服务。我的登录服务将在数据库中查找用户并为他们分配角色。它看起来像这样
有没有办法操纵jaxws中使用的编码器。 我喜欢发送一个在网络服务请求中提交的 cdata,为此我想在这里尝试类似描述的东西:http://odedpeer.blogspot.de/2010/07/j
我想从 java 服务器 (Restful Jax-rs) 发送图像。我的客户是安卓。 @GET public Response getUserImage() { byte[] image =new
我对网络服务很陌生。我找不到 JAX-WS 和 CXF 之间的区别。 据我了解,JAX-WS是java提供的规范,CXF是实现。 如果我错了,请纠正我。 最佳答案 是的,你是对的。 JAX-WS 是基
我是一名优秀的程序员,十分优秀!