public Map<String, Object> add(BBS bean) { System.out.println(bean); Map<String, Object> map = new HashMap<String, Object>(); try { int flag = service.add(bean); if (flag == 0) { map.put("code", 1); map.put("msg", "操作失败"); } else { map.put("code", 0); map.put("msg", "success"); } } catch (Exception e) { e.printStackTrace(); map.put("code", 1); map.put("msg", "操作失败"); } return map; }
时间: 2023-06-20 21:10:35 浏览: 252
map 和 bean 之间的转换
5星 · 资源好评率100%
这段代码实现了一个添加 BBS 实体对象的方法,并返回一个 Map 对象。它首先打印出传入的 bean 对象,然后尝试调用 service 的 add 方法,将 bean 对象添加到数据库中。如果添加成功,则将 code 设为 0,msg 设为 "success",否则将 code 设为 1,msg 设为 "操作失败"。如果在添加过程中出现异常,则将异常信息打印出来,并将 code 设为 1,msg 设为 "操作失败"。最后返回 map 对象。
阅读全文