您好,登錄后才能下訂單哦!
本篇內容主要講解“SpringBoot怎么接入釘釘自定義機器人預警通知”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot怎么接入釘釘自定義機器人預警通知”吧!
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.8</version> </dependency>
import com.alibaba.fastjson.JSON; import lombok.extern.slf4j.Slf4j; import net.sf.json.JSONSerializer; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.HttpClients; import org.apache.http.util.EntityUtils; import java.util.*; /** * @Author: yansf * @Description:釘釘消息發送工具類 * @Date: 10:44 AM 2019/6/12 * @Modified By: */ @Slf4j public class DingDingMsgSendUtils { /** * 處理發送的釘釘消息 * * @param accessToken * @param textMsg */ private static void dealDingDingMsgSend(String accessToken, String textMsg) { HttpClient httpclient = HttpClients.createDefault(); String WEBHOOK_TOKEN = "https://oapi.dingtalk.com/robot/send?access_token=" + accessToken; HttpPost httppost = new HttpPost(WEBHOOK_TOKEN); httppost.addHeader("Content-Type", "application/json; charset=utf-8"); StringEntity se = new StringEntity(textMsg, "utf-8"); httppost.setEntity(se); try { HttpResponse response = httpclient.execute(httppost); if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { String result = EntityUtils.toString(response.getEntity(), "utf-8"); log.info("【發送釘釘群消息】消息響應結果:" + JSON.toJSONString(result)); } } catch (Exception e) { log.error("【發送釘釘群消息】error:" + e.getMessage(), e); } } /** * 發送釘釘群消息 * * @param accessToken * @param content */ public static void sendDingDingGroupMsg(String accessToken, String content) { String textMsg = "{ \"msgtype\": \"text\", \"text\": {\"content\": \"" + content + "\"}}"; dealDingDingMsgSend(accessToken, textMsg); } /** * 發送釘釘群消息(可以艾特人) * * @param accessToken 群機器人accessToken * @param content 發送內容 * @param atPhone 艾特人電話,如:176********,156********, */ public static void sendDingDingGroupMsg(String accessToken, String content, String atPhone) { content = content.replace("\"", "'"); String textMsg = ""; // String textMsg = "{\n" + // " \"msgtype\": \"text\", \n" + // " \"text\": {\n" + // " \"content\": \"" + content + "\"\n" + // " }, \n" + // " \"at\": {\n" + // " \"atMobiles\": [\n" + // " " + atPhone + // " ], \n" + // " \"isAtAll\": false\n" + // " }\n" + // "}"; MsgDto msgDto = new MsgDto(); msgDto.setMsgtype("text"); TextDto textDto = new TextDto(); textDto.setContent(content); msgDto.setText(textDto); AtDto atDto = new AtDto(); atDto.setIsAtAll(false); List<String> result = Arrays.asList(atPhone.split(",")); atDto.setAtMobiles(result); msgDto.setAt(atDto); textMsg = JSONSerializer.toJSON(msgDto).toString(); System.out.println(textMsg); dealDingDingMsgSend(accessToken, textMsg); } public static void main(String[] args) { try { int s = Integer.parseInt("df12"); // System.out.println(1 / 0); } catch (Exception e) { //e.printStackTrace(); sendDingDingGroupMsg(DingTokenEnum.SEND_SMS_BY_DEVELOPER_TOKEN.getToken(), "【JAVA系統消息】釘釘消息推送測試,by:閆淑芳..." + e, DingMsgPhoneEnum.DEVELOPER_PHONE_yansf.getPhone()); } } }
import lombok.Getter; /** * @Author: yansf * @Description:釘釘消息接收用戶,配置釘釘綁定的電話即可 * @Date: 10:44 AM 2019/6/12 * @Modified By: */ @Getter public enum DingMsgPhoneEnum { GENERAL_PURPOSE("176*****983", "bug不存在的"), DEVELOPER_PHONE_yansf("176*****983", "yansf"), DEVELOPER_PHONE_all("176*****983,176*****982,176*****981,176*****980", "all"), PRODUCT_PERSONNEL_PHONE("", "產品人員"), DATA_ANALYST_PHONE("", "數據分析人員"); private String phone; private String name; DingMsgPhoneEnum(String phone, String name) { this.phone = phone; this.name = name; } }
import lombok.Getter; /** * @Author: yansf * @Description:釘釘消息群機器人access_token * @Date: 10:45 AM 2019/6/12 * @Modified By: */ @Getter public enum DingTokenEnum { SEND_SMS_BY_DEVELOPER_TOKEN("此處自己申請token", "系統消息通知,技術專用"); private String token; private String name; DingTokenEnum(String token, String name) { this.token = token; this.name = name; } }
import lombok.Data; import java.util.List; /** * @Author: yansf * @Description: * @Date:Creat in 2:13 PM 2019/6/12 * @Modified By: */ @Data public class AtDto { private List<String> atMobiles; private Boolean isAtAll = false; }
import lombok.Data; /** * @Author: yansf * @Description: * @Date:Creat in 2:13 PM 2019/6/12 * @Modified By: */ @Data public class MsgDto { private String msgtype; private TextDto text; private AtDto at; }
import lombok.Data; /** * @Author: yansf * @Description: * @Date:Creat in 2:13 PM 2019/6/12 * @Modified By: */ @Data public class TextDto { private String content; }
異常捕獲 try{ //todo } catch (Exception ex) { DingDingMsgSendUtils.sendDingDingGroupMsg(DingTokenEnum.SEND_SMS_BY_DEVELOPER_TOKEN.getToken(), "***異常," + profile + "環境,errorMsg=" + ex, DingMsgPhoneEnum.DEVELOPER_PHONE_yansf.getPhone()); } profile配置 @Value("${spring.profiles.active}") private String profile;
到此,相信大家對“SpringBoot怎么接入釘釘自定義機器人預警通知”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。