http://blog.csdn.net/hengyunabc/article/details/24325295
http://blog.csdn.net/hengyunabc/article/details/25435739
Apple APNs java client, based on netty4.
基于netty4实现的苹果通知推送服务Java客户端。
默认是用JDK7来编绎的,如果想用JDK6,可以修改pom.xml里maven-compiler-plugin的source和target为1.6。
特点:
- 支持第三版通知推送,即command = 2。目前的绝大部分Java客户端都只支持command = 1,即第二版。
- 支持SSL握手成功才返回,可以调用 pushManager.start().sync(); 等待握手成功才开始发送;
- 最大限度重试发送,内部自动处理重连,错误重发机制;
- 支持配置RejectListener,即通知被Apple服务器拒绝之后的回调接口;
- 支持配置ShutdownListener,即当shutdown时,没有发送完的消息处理的回调接口;
- 支持发送统计信息;
- 实现组件分离,可以利用PushClient,FeedbackClient来写一些灵活的代码;
- Notification发送者可以自己定义设置发送的Queue,自己灵活处理阻塞,超时等问题。
Example:
More example under src/test/java.
public class MainExample {
public static void main(String[] args) throws InterruptedException {
Environment environment = Environment.Product;
String password = "123456";
String keystore = "/home/hengyunabc/test/apptype/app_type_1/productAPNS.p12";
PushManager pushManager = new PushManagerImpl(keystore, password, environment);
//set a push queue
BlockingQueue<Notification> queue = new LinkedBlockingQueue<Notification>(8192);
pushManager.setQueue(queue );
pushManager.setShutdownListener(new ShutdownListener() {
@Override
public void handle(List<Notification> notifications) {
System.out.println("PrintShutdownListener:");
for(Notification notification : notifications) {
System.out.println(notification);
}
}
});
//waiting for SSL handshake success
pushManager.start().sync();
//build a notification
String token = "0dea779dd8850531e7120631efb27a269818a637b823087bf2b2c46347a8e518";
Notification notification = new NotificationBuilder()
.setToken(token)
.setSound("default")
.setBadge(1)
.setAlert("test").build();
//put notification into the queue
queue.put(notification);
TimeUnit.SECONDS.sleep(10);
//get statistic info
Statistic statistic = pushManager.getStatistic();
System.out.println(statistic);
pushManager.shudownWithListener();
System.out.println("pushManager.shudownWithListener()");
}
}
##注意事项
- 在IOS8里当消息priority为5时,客户端接收不到消息,所以不要设置这个值。默认是10。
- 在IOS8里,要显式设置消息的sound,比如setSound("default"),否则默认是没有声音提示的。