java - 我无法使用 JDBC 驱动程序在 Java 中使用 SOAP Web 服务在 MYSQL 中插入

标签 java mysql web-services soap netbeans-8

您好,我正在尝试测试连接到 mysql localhost (xampp) 的 Web 服务 Soap java,但我无法在数据库中插入任何行 这是我的代码

Conexion.java

import java.sql.Connection
import java.sql.DriverManager

public class Conexion {

public static final Connection ConectarMySQL() throws SQLException
{
    Connection conn;
    try
    {          
        conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/controldecalidad", "root", "");            
    }
    catch(SQLException ex)
    {
        throw new SQLException(ex.getMessage());
    }
    return conn;
}

这是网络服务

 @WebMethod(operationName= "registra_rechazo")   
public void registra_rechazo(@WebParam(name = "SKU")String SKU,@WebParam(name = "fecha")String fecha,
        @WebParam(name = "num_captura")String num_captura,@WebParam(name = "pesoCaptura") int pesoCaptura) 
{
    try
    {
        Connection conn = Conexion.ConectarMySQL();
        String sql = "INSERT INTO registra_rechazo VALUES(?,?,?,?)";
        PreparedStatement pst = conn.prepareStatement(sql);
        pst.setString(1, SKU);   
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd");            
        pst.setString(2, dateFormat.format(fecha));
        pst.setString(3, num_captura);
        pst.setInt(4, pesoCaptura);
        pst.execute();
        pst.close();
        conn.close();

    }
    catch(SQLException Ex)
    {

    } 
}

这里是错误 /image/aWO16.png

UPDATE!! 我检查了我的项目,发现了这个新错误 /image/uHRQW.png

我缺少什么?请帮助!!!!

最佳答案

我终于解决了!!

在 Conexion 类中删除静态 final 并为此类创建构造函数

public class Conexion {

public Conexion(){

}    
public Connection getConecction()
{
    Connection con = null;
    try{
        Class.forName("com.mysql.jdbc.Driver");
        con = DriverManager.getConnection("jdbc:mysql://localhost:3306/controldecalidad", "root", "");                        
    }catch(SQLException ex){            
    }
    catch(Exception ex){
    }
    return con;
    }    
}

然后我创建了一个具有所有操作的类

public class Operaciones 
{
   Conexion conexion;

public Operaciones()
{
    conexion = new Conexion();
}


public boolean registra_rechazo(String SKU,String fecha,String num_captura,int pesoCaptura)
{
    Boolean bandera=false;
     try
    {
        Connection conn = conexion.getConecction();
        java.util.Date utilStartDate = new java.util.Date(fecha);
        java.sql.Date sqlStartDate = new java.sql.Date(utilStartDate.getTime());           
        String sql = "INSERT INTO registra_rechazo VALUES(?,?,?,?)";
        PreparedStatement pst = conn.prepareStatement(sql);
        pst.setString(1, SKU);   
        pst.setDate(2, sqlStartDate);
        pst.setString(3, num_captura);
        pst.setInt(4, pesoCaptura);
        if(pst.executeUpdate()!=-1){
            bandera = true;
            return bandera;
        }
        else{
            bandera = false;
            return bandera;

        }

    }
    catch(SQLException Ex)
    {

    }
     return bandera;
   }
}

然后我调用网络服务中的方法,但首先必须像图像一样通过网络服务中的添加操作创建网络方法

/image/HjAHk.png

我不知道为什么,但该方法只有在您使用该向导创建方法时才有效

@WebMethod(operationName = "operation")
public boolean operation(@WebParam(name = "SKU") String SKU, @WebParam(name = "fecha") String fecha, @WebParam(name = "num_captura") String num_captura, @WebParam(name = "peso_captura") int peso_captura) {
    //TODO write your implementation code here:
     Operaciones op = new Operaciones();
    return op.registra_rechazo(SKU,fecha,num_captura,peso_captura);
}

然后 web 方法必须返回一些东西,用 void 是行不通的

关于java - 我无法使用 JDBC 驱动程序在 Java 中使用 SOAP Web 服务在 MYSQL 中插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53401732/

相关文章:

java 。读取文件,按某列排序并打印

java - 我们不能定义包含该变量的类的变量吗?

php - 选择单选按钮时从隐藏输入字段检索值

mysql - 为什么我的 Mysql 事件无法运行

WCF:是否是 Web 服务?

ios - 如何使用 token 化来保护 Facebook 登录的 Web 服务方法?

java - JUnit 3,如何找到哪些测试覆盖了我的代码行? (RTC...也许?)

java - 为什么克隆阵列这么慢?

mysql - 如何将三元(三元)ER 图转换为二进制?

.net - SQL Server 作为 Web 服务客户端