jav忽视异常

使用try catch(Exception来解决异常


    void addTets() {
    List<BGst> testList=new ArrayList<>();
    BGst t=new BGst();
    t.setId(1);
    t.setName("asdads");
    testList.add(t);
    try{
        elasticsearchSelectService.save(testList);
    }  catch (Exception e) {
   
    }finally {
    }
    }

你可能感兴趣的:(前端)