2023. 2. 15. 01:11ใ๐พBackEnd/๐ฑ Spring
์๊ฐ
์์ฆ Slack์ ์์ฃผ ์ฌ์ฉํ๊ฒ ๋์ด์ Spring boot๋ฅผ ํตํด์ Slack์ ์๋ฆผ์ ๋ณด๋ด๊ธฐ๋ฅผ ์๋ํ๋ค.
1. ์ํฌ์คํ์ด์ค ๋ฐ ์ฑ๋
- ์ผ๋จ ๊ธฐ์กด์ ์๋ ์ฑ๋์ ์ฌ์ฉ์ ํ๋๋ฐ ๋ง์ฝ์ ํ๋ก์ ํธ๋ฅผ ํ๋ค๋ฉด ์๋ก์ด ์ฑ๋์ ๋ง๋๋ ๋ฐฉ๋ฒ์ ์ถ์ฒํ๋ค.
2. ์๋ธ ์ฑ๋ -> ์ธ๋ถ์ ๋ณด ๋ณด๊ธฐ
- ์๋ธ ์ฑ๋์ ํ๋ ์ ํ์ ํ๊ณ ์ฑํด๋ฆญ์ ํ์ฌ ์ฑ๋ ์ธ๋ถ์ ๋ณด ๋ณด๊ธฐ๋ฅผ ์ ํํ๋ค.
3. ํตํฉ -> ์ฑ -> ์ฑ์ถ๊ฐ
4. ๊ฒ์ -> webhook ๊ฒ์
๊ฒ์์ ํ ๋ webhook์ ๊ฒ์ํ์ฌ Imcoming-webook์ ์ค์นํ๋ค.
5. URL ํ์ธ
Slack api ์ฌ์ดํธ์ ๋ค์ด๊ฐ์ Add Incoming WebHooks Integration์ ๋๋ฅด๋ฉด ๋ฐ์ ํ๋ฉด์ด ๋์ค๋๋ฐ ์ฌ๊ธฐ์ URL์ ๋ณต์ฌํ๋ค.
5-2. webhook ํ ์คํธ
- ํ๋ฉด ๋ฐ์ ๋ด๋ ค๊ฐ๋ฉด ์) curl -X post๊ฐ ์๋ค. cmd๋ก ์ง๊ธ slack์ ํ ์คํธ๊ฐ ๊ฐ๋ฅํ๋ค.
httppie๊ฐ ์๋ค๋ฉด ์ ์ฒด ์ฝ๋๋ฅผ ๋ณต์ฌํด์ cmd์ ์์ฑํ๋ฉด ๋๋ค.
6. ์์กด์ฑ ์ถ๊ฐ
implementation("net.gpedro.integrations.slack:slack-webhook:1.4.0")
Spring - boot์ ์์กด์ฑ์ ์ถ๊ฐ ํ๋ค.
7. ์ฝ๋ ์์ฑ
- ์ง๊ธ์ ๊ฐ๋จํ๊ฒ message์ ๋ฐ์์ ๋๊ฒจ์ฃผ๋ ์ฝ๋๋ง ์์ฑ์ ํ๋ค.
@Controller
public class test {
@PostMapping("/publish/slack")
public void send(@RequestBody String message) {
RestTemplate restTemplate = new RestTemplate();
Map<String, Object> request = new HashMap<>();
request.put("username", "ํํ"); //slack bot name
request.put("text", message); //์ ์กํ ๋ฉ์ธ์ง
request.put("icon_emoji", ":slack_emoji:"); //slack bot image
HttpEntity<Map<String, Object>> entity = new HttpEntity<Map<String, Object>>(request);
String url = "https://hooks.slack.com/services/????"; //๋ณต์ฌํ Webhook URL ์
๋ ฅ
restTemplate.exchange(url, HttpMethod.POST, entity, String.class);
}
}
7. PostApi - Message ์ ์ก
์ง๊ธ๊น์ง Spring boot๋ฅผ ์ด์ฉํด์ ๊ฐ๋จํ๊ฒ ๋ฉ์ธ์ง๋ฅผ ๋ณด๋ด๋ ๋ฐฉ๋ฒ์ ๋ํด์ ์์ฑ์ ํ๋ค.
๋ฌผ๋ก ์์ฃผ ๊ฐ๋จํ์ง๋ง ์ด๊ฒ์ ๊ธฐ๋ฐ์ผ๋ก ๋ค์ํ ํ๋์ ํ ์ ์๋ค.
https://github.com/gpedro/slack-webhook
GitHub - gpedro/slack-webhook: Slack WebHook Integration for Java
Slack WebHook Integration for Java. Contribute to gpedro/slack-webhook development by creating an account on GitHub.
github.com
'๐พBackEnd > ๐ฑ Spring' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ RFC ] ๊ณต์ ๋ฌธ์๋ฅผ ํตํ์ฌ Delete์ Status๋ฅผ ์์๋ณด์ (0) | 2023.03.12 |
---|---|
[ Jackson ] Jackson mock ํ ์คํธ ์ญ์ง๋ ฌํ ์ค๋ฅ (0) | 2023.03.11 |
Spring Boot Test H2 In Memory ์ค์ ํ๊ธฐ (0) | 2023.02.28 |
JPA ์์์ฑ ์ปจํ ์คํธ (0) | 2023.02.04 |
SPRING ์ฟผ๋ฆฌ๋ฅผ 2๊ฐ๋ฅผ 1๊ฐ๋ก ์ค์ด๋ Merge ์ด์ฉํ๊ธฐ (0) | 2022.11.26 |