jpush-spring-boot-starter

Spring Boot Starter For JPush

说明

基于 jpush-client 的 Spring Boot Starter 实现

  1. 官网地址: https://www.jiguang.cn/push

Maven

<dependency>
    <groupId>com.github.hiwepy</groupId>
    <artifactId>jpush-spring-boot-starter</artifactId>
    <version>${project.version}</version>
</dependency>

Sample


import java.io.IOException;

import javax.annotation.PostConstruct;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@EnableJPush
@SpringBootApplication
public class Application {

    @Autowired
    JPushTemplate template;

    @PostConstruct
    public void test() throws IOException {
        PushObject pushObject = new PushObject();
        System.out.println(template.sendPush(pushObject));
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(Application.class, args);
    }

}

yaml配置,参考如下:

jpush:
  master-secret: zzz
  app-key: xxx
  production: false
作者:Jeebiz  创建时间:2023-03-21 00:03
最后编辑:Jeebiz  更新时间:2024-10-04 23:38