您当前的位置:首页 > 电脑百科 > 程序开发 > 语言 > JAVA

Spring Boot集成极光推送Java-SDK

时间:2019-09-12 09:30:45  来源:  作者:

pom.xml

<!-- 极光推送 begin -->
<dependency>
 <groupId>cn.jpush.api</groupId>
 <artifactId>jpush-client</artifactId>
 <version>3.3.10</version>
</dependency>
<dependency>
 <groupId>cn.jpush.api</groupId>
 <artifactId>jiguang-common</artifactId>
 <version>1.1.4</version>
</dependency>

Application.yml

jpush:
 appKey: xxx
 masterSecret: xxxx
 apnsProduction: false # 是否生成环境,true表示生成环境

MyJPushClient

import cn.jiguang.common.resp.APIConnectionException;
import cn.jiguang.common.resp.APIRequestException;
import cn.jpush.api.JPushClient;
import cn.jpush.api.push.PushResult;
import cn.jpush.api.push.model.Message;
import cn.jpush.api.push.model.Options;
import cn.jpush.api.push.model.Platform;
import cn.jpush.api.push.model.PushPayload;
import cn.jpush.api.push.model.audience.Audience;
import cn.jpush.api.push.model.notification.AndroidNotification;
import cn.jpush.api.push.model.notification.IOSNotification;
import cn.jpush.api.push.model.notification.Notification;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import JAVA.util.List;
/**
 * 极光推送客户端
 *
 * @author Mengday Zhang
 * @version 1.0
 * @since 2019-04-01
 */
@Component
public class MyJPushClient {
 @Value("${jpush.appKey}")
 private String appKey;
 @Value("${jpush.masterSecret}")
 private String masterSecret;
 @Value("${jpush.apnsProduction}")
 private boolean apnsProduction;
 private static JPushClient jPushClient = null;
 private static final int RESPONSE_OK = 200;
 private static final Logger logger = LoggerFactory.getLogger(MyJPushClient.class);
 public JPushClient getJPushClient() {
 if (jPushClient == null) {
 jPushClient = new JPushClient(masterSecret, appKey);
 }
 return jPushClient;
 }
 /**
 * 推送到alias列表
 *
 * @param alias 别名或别名组
 * @param notificationTitle 通知内容标题
 * @param msgTitle 消息内容标题
 * @param msgContent 消息内容
 * @param extras 扩展字段
 */
 public void sendToAliasList(List<String> alias, String notificationTitle, String msgTitle, String msgContent, String extras) {
 PushPayload pushPayload = buildPushObject_all_aliasList_alertWithTitle(alias, notificationTitle, msgTitle, msgContent, extras);
 this.sendPush(pushPayload);
 }
 /**
 * 推送到tag列表
 *
 * @param tagsList Tag或Tag组
 * @param notificationTitle 通知内容标题
 * @param msgTitle 消息内容标题
 * @param msgContent 消息内容
 * @param extras 扩展字段
 */
 public void sendToTagsList(List<String> tagsList, String notificationTitle, String msgTitle, String msgContent, String extras) {
 PushPayload pushPayload = buildPushObject_all_tagList_alertWithTitle(tagsList, notificationTitle, msgTitle, msgContent, extras);
 this.sendPush(pushPayload);
 }
 /**
 * 发送给所有安卓用户
 *
 * @param notificationTitle 通知内容标题
 * @param msgTitle 消息内容标题
 * @param msgContent 消息内容
 * @param extras 扩展字段
 */
 public void sendToAllAndroid(String notificationTitle, String msgTitle, String msgContent, String extras) {
 PushPayload pushPayload = buildPushObject_android_all_alertWithTitle(notificationTitle, msgTitle, msgContent, extras);
 this.sendPush(pushPayload);
 }
 /**
 * 发送给所有IOS用户
 *
 * @param notificationTitle 通知内容标题
 * @param msgTitle 消息内容标题
 * @param msgContent 消息内容
 * @param extras 扩展字段
 */
 public void sendToAllIOS(String notificationTitle, String msgTitle, String msgContent, String extras) {
 PushPayload pushPayload = buildPushObject_ios_all_alertWithTitle(notificationTitle, msgTitle, msgContent, extras);
 this.sendPush(pushPayload);
 }
 /**
 * 发送给所有用户
 *
 * @param notificationTitle 通知内容标题
 * @param msgTitle 消息内容标题
 * @param msgContent 消息内容
 * @param extras 扩展字段
 */
 public void sendToAll(String notificationTitle, String msgTitle, String msgContent, String extras) {
 PushPayload pushPayload = buildPushObject_android_and_ios(notificationTitle, msgTitle, msgContent, extras);
 this.sendPush(pushPayload);
 }
 private PushResult sendPush(PushPayload pushPayload) {
 logger.info("pushPayload={}", pushPayload);
 PushResult pushResult = null;
 try {
 pushResult = this.getJPushClient().sendPush(pushPayload);
 logger.info("" + pushResult);
 if (pushResult.getResponseCode() == RESPONSE_OK) {
 logger.info("push successful, pushPayload={}", pushPayload);
 }
 } catch (APIConnectionException e) {
 logger.error("push failed: pushPayload={}, exception={}", pushPayload, e);
 } catch (APIRequestException e) {
 logger.error("push failed: pushPayload={}, exception={}", pushPayload, e);
 }
 return pushResult;
 }
 /**
 * 向所有平台所有用户推送消息
 *
 * @param notificationTitle
 * @param msgTitle
 * @param msgContent
 * @param extras
 * @return
 */
 public PushPayload buildPushObject_android_and_ios(String notificationTitle, String msgTitle, String msgContent, String extras) {
 return PushPayload.newBuilder()
 .setPlatform(Platform.android_ios())
 .setAudience(Audience.all())
 .setNotification(Notification.newBuilder()
 .setAlert(notificationTitle)
 .addPlatformNotification(AndroidNotification.newBuilder()
 .setAlert(notificationTitle)
 .setTitle(notificationTitle)
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("androidNotification extras key", extras)
 .build()
 )
 .addPlatformNotification(IosNotification.newBuilder()
 // 传一个IosAlert对象,指定apns title、title、subtitle等
 .setAlert(notificationTitle)
 // 直接传alert
 // 此项是指定此推送的badge自动加1
 .incrBadge(1)
 // 此字段的值default表示系统默认声音;传sound.caf表示此推送以项目里面打包的sound.caf声音来提醒,
 // 如果系统没有此音频则以系统默认声音提醒;此字段如果传空字符串,iOS9及以上的系统是无声音提醒,以下的系统是默认声音
 .setSound("default")
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("iosNotification extras key", extras)
 // 此项说明此推送是一个background推送,想了解background看:http://docs.jpush.io/client/ios_tutorials/#ios-7-background-remote-notification
 // .setContentAvailable(true)
 .build()
 )
 .build()
 )
 // Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
 // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
 // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
 .setMessage(Message.newBuilder()
 .setMsgContent(msgContent)
 .setTitle(msgTitle)
 .addExtra("message extras key", extras)
 .build())
 .setOptions(Options.newBuilder()
 // 此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
 .setApnsProduction(apnsProduction)
 // 此字段是给开发者自己给推送编号,方便推送者分辨推送记录
 .setSendno(1)
 // 此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天,单位为秒
 .setTimeToLive(86400)
 .build())
 .build();
 }
 /**
 * 向所有平台单个或多个指定别名用户推送消息
 *
 * @param aliasList
 * @param notificationTitle
 * @param msgTitle
 * @param msgContent
 * @param extras
 * @return
 */
 private PushPayload buildPushObject_all_aliasList_alertWithTitle(List<String> aliasList, String notificationTitle, String msgTitle, String msgContent, String extras) {
 // 创建一个IosAlert对象,可指定APNs的alert、title等字段
 // IosAlert iosAlert = IosAlert.newBuilder().setTitleAndBody("title", "alert body").build();
 return PushPayload.newBuilder()
 // 指定要推送的平台,all代表当前应用配置了的所有平台,也可以传android等具体平台
 .setPlatform(Platform.all())
 // 指定推送的接收对象,all代表所有人,也可以指定已经设置成功的tag或alias或该应应用客户端调用接口获取到的registration id
 .setAudience(Audience.alias(aliasList))
 // jpush的通知,android的由jpush直接下发,iOS的由apns服务器下发,Winphone的由mpns下发
 .setNotification(Notification.newBuilder()
 // 指定当前推送的android通知
 .addPlatformNotification(AndroidNotification.newBuilder()
 .setAlert(notificationTitle)
 .setTitle(notificationTitle)
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("androidNotification extras key", extras)
 .build())
 // 指定当前推送的iOS通知
 .addPlatformNotification(IosNotification.newBuilder()
 // 传一个IosAlert对象,指定apns title、title、subtitle等
 .setAlert(notificationTitle)
 // 直接传alert
 // 此项是指定此推送的badge自动加1
 .incrBadge(1)
 // 此字段的值default表示系统默认声音;传sound.caf表示此推送以项目里面打包的sound.caf声音来提醒,
 // 如果系统没有此音频则以系统默认声音提醒;此字段如果传空字符串,iOS9及以上的系统是无声音提醒,以下的系统是默认声音
 .setSound("default")
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("iosNotification extras key", extras)
 // 此项说明此推送是一个background推送,想了解background看:http://docs.jpush.io/client/ios_tutorials/#ios-7-background-remote-notification
 // 取消此注释,消息推送时ios将无法在锁屏情况接收
 // .setContentAvailable(true)
 .build())
 .build())
 // Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
 // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
 // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
 .setMessage(Message.newBuilder()
 .setMsgContent(msgContent)
 .setTitle(msgTitle)
 .addExtra("message extras key", extras)
 .build())
 .setOptions(Options.newBuilder()
 // 此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
 .setApnsProduction(apnsProduction)
 // 此字段是给开发者自己给推送编号,方便推送者分辨推送记录
 .setSendno(1)
 // 此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天;
 .setTimeToLive(86400)
 .build())
 .build();
 }
 /**
 * 向所有平台单个或多个指定Tag用户推送消息
 *
 * @param tagsList
 * @param notificationTitle
 * @param msgTitle
 * @param msgContent
 * @param extras
 * @return
 */
 private PushPayload buildPushObject_all_tagList_alertWithTitle(List<String> tagsList, String notificationTitle, String msgTitle, String msgContent, String extras) {
 //创建一个IosAlert对象,可指定APNs的alert、title等字段
 //IosAlert iosAlert = IosAlert.newBuilder().setTitleAndBody("title", "alert body").build();
 return PushPayload.newBuilder()
 // 指定要推送的平台,all代表当前应用配置了的所有平台,也可以传android等具体平台
 .setPlatform(Platform.all())
 // 指定推送的接收对象,all代表所有人,也可以指定已经设置成功的tag或alias或该应应用客户端调用接口获取到的registration id
 .setAudience(Audience.tag(tagsList))
 // jpush的通知,android的由jpush直接下发,iOS的由apns服务器下发,Winphone的由mpns下发
 .setNotification(Notification.newBuilder()
 // 指定当前推送的android通知
 .addPlatformNotification(AndroidNotification.newBuilder()
 .setAlert(notificationTitle)
 .setTitle(notificationTitle)
 //此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("androidNotification extras key", extras)
 .build())
 // 指定当前推送的iOS通知
 .addPlatformNotification(IosNotification.newBuilder()
 // 传一个IosAlert对象,指定apns title、title、subtitle等
 .setAlert(notificationTitle)
 // 直接传alert
 // 此项是指定此推送的badge自动加1
 .incrBadge(1)
 // 此字段的值default表示系统默认声音;传sound.caf表示此推送以项目里面打包的sound.caf声音来提醒,
 // 如果系统没有此音频则以系统默认声音提醒;此字段如果传空字符串,iOS9及以上的系统是无声音提醒,以下的系统是默认声音
 .setSound("default")
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("iosNotification extras key", extras)
 // 此项说明此推送是一个background推送,想了解background看:http://docs.jpush.io/client/ios_tutorials/#ios-7-background-remote-notification
 // 取消此注释,消息推送时ios将无法在锁屏情况接收
 // .setContentAvailable(true)
 .build())
 .build())
 // Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
 // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
 // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
 .setMessage(Message.newBuilder()
 .setMsgContent(msgContent)
 .setTitle(msgTitle)
 .addExtra("message extras key", extras)
 .build())
 .setOptions(Options.newBuilder()
 // 此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
 .setApnsProduction(apnsProduction)
 // 此字段是给开发者自己给推送编号,方便推送者分辨推送记录
 .setSendno(1)
 // 此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天;
 .setTimeToLive(86400)
 .build())
 .build();
 }
 /**
 * 向android平台所有用户推送消息
 *
 * @param notificationTitle
 * @param msgTitle
 * @param msgContent
 * @param extras
 * @return
 */
 private PushPayload buildPushObject_android_all_alertWithTitle(String notificationTitle, String msgTitle, String msgContent, String extras) {
 return PushPayload.newBuilder()
 // 指定要推送的平台,all代表当前应用配置了的所有平台,也可以传android等具体平台
 .setPlatform(Platform.android())
 // 指定推送的接收对象,all代表所有人,也可以指定已经设置成功的tag或alias或该应应用客户端调用接口获取到的registration id
 .setAudience(Audience.all())
 // jpush的通知,android的由jpush直接下发,iOS的由apns服务器下发,Winphone的由mpns下发
 .setNotification(Notification.newBuilder()
 // 指定当前推送的android通知
 .addPlatformNotification(AndroidNotification.newBuilder()
 .setAlert(notificationTitle)
 .setTitle(notificationTitle)
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("androidNotification extras key", extras)
 .build())
 .build()
 )
 // Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
 // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
 // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
 .setMessage(Message.newBuilder()
 .setMsgContent(msgContent)
 .setTitle(msgTitle)
 .addExtra("message extras key", extras)
 .build())
 .setOptions(Options.newBuilder()
 // 此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
 .setApnsProduction(apnsProduction)
 // 此字段是给开发者自己给推送编号,方便推送者分辨推送记录
 .setSendno(1)
 // 此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天,单位为秒
 .setTimeToLive(86400)
 .build())
 .build();
 }
 /**
 * 向ios平台所有用户推送消息
 *
 * @param notificationTitle
 * @param msgTitle
 * @param msgContent
 * @param extras
 * @return
 */
 private PushPayload buildPushObject_ios_all_alertWithTitle(String notificationTitle, String msgTitle, String msgContent, String extras) {
 return PushPayload.newBuilder()
 // 指定要推送的平台,all代表当前应用配置了的所有平台,也可以传android等具体平台
 .setPlatform(Platform.ios())
 // 指定推送的接收对象,all代表所有人,也可以指定已经设置成功的tag或alias或该应应用客户端调用接口获取到的registration id
 .setAudience(Audience.all())
 // jpush的通知,android的由jpush直接下发,iOS的由apns服务器下发,Winphone的由mpns下发
 .setNotification(Notification.newBuilder()
 // 指定当前推送的android通知
 .addPlatformNotification(IosNotification.newBuilder()
 // 传一个IosAlert对象,指定apns title、title、subtitle等
 .setAlert(notificationTitle)
 // 直接传alert
 // 此项是指定此推送的badge自动加1
 .incrBadge(1)
 // 此字段的值default表示系统默认声音;传sound.caf表示此推送以项目里面打包的sound.caf声音来提醒,
 // 如果系统没有此音频则以系统默认声音提醒;此字段如果传空字符串,iOS9及以上的系统是无声音提醒,以下的系统是默认声音
 .setSound("default")
 // 此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
 .addExtra("iosNotification extras key", extras)
 // 此项说明此推送是一个background推送,想了解background看:http://docs.jpush.io/client/ios_tutorials/#ios-7-background-remote-notification
 // .setContentAvailable(true)
 .build())
 .build()
 )
 // Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
 // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
 // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
 .setMessage(Message.newBuilder()
 .setMsgContent(msgContent)
 .setTitle(msgTitle)
 .addExtra("message extras key", extras)
 .build())
 .setOptions(Options.newBuilder()
 // 此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
 .setApnsProduction(apnsProduction)
 // 此字段是给开发者自己给推送编号,方便推送者分辨推送记录
 .setSendno(1)
 // 此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天,单位为秒
 .setTimeToLive(86400)
 .build())
 .build();
 }
 public static void main(String[] args) {
// MyJPushClient jPushUtil = new MyJPushClient();
// List<String> aliasList = Arrays.asList("239");
// String notificationTitle = "notificationTitle";
// String msgTitle = "msgTitle";
// String msgContent = "msgContent";
// jPushUtil.sendToAliasList(aliasList, notificationTitle, msgTitle, msgContent, "exts");
 }
}

test

@RunWith(SpringRunner.class)
@SpringBootTest
public class JPushApplicationTests {
 @Autowired
 private MyJPushClient jPushClient;
 @Test
 public void testJPush() {
 List<String> aliasList = Arrays.asList("239");
 String notificationTitle = "notification_title";
 String msgTitle = "msg_title";
 String msgContent = "msg_content";
 jPushClient.sendToAliasList(aliasList, notificationTitle, msgTitle, msgContent, "exts");
 }
}
(建议收藏) | Spring Boot集成极光推送Java-SDK

 



Tags:Spring Boot   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
前言一个基于spring boot的JAVA开源商城系统,是前后端分离、为生产环境多实例完全准备、数据库为b2b2c商城系统设计、拥有完整下单流程和精美设计的java开源商城系统https://...【详细内容】
2021-09-17  Tags: Spring Boot  点击:(119)  评论:(0)  加入收藏
在 Java 和 Kotlin 中, 除了使用Spring Boot创建微服务外,还有很多其他的替代方案。 名称 版本 发布时间 开发商 GitHub ...【详细内容】
2021-08-06  Tags: Spring Boot  点击:(175)  评论:(0)  加入收藏
大家都知道,MyBatis 框架是一个持久层框架,是 Apache 下的顶级项目。Mybatis 可以让开发者的主要精力放在 sql 上,通过 Mybatis 提供的映射方式,自由灵活的生成满足需要的 sql 语句。使用简单的 XML 或注解来配置和映射原...【详细内容】
2021-07-06  Tags: Spring Boot  点击:(96)  评论:(0)  加入收藏
首先,先看 SpringBoot 的主配置类:@SpringBootApplicationpublicclassStartEurekaApplication{publicstaticvoidmain(String[] args){SpringApplication.run(StartEurekaAppli...【详细内容】
2021-06-11  Tags: Spring Boot  点击:(144)  评论:(0)  加入收藏
今天又要给大家介绍一个 Spring Boot 中的组件 --HandlerMethodReturnValueHandler。在前面的文章中(如何优雅的实现 Spring Boot 接口参数加密解密?),松哥已经和大家介绍过如何...【详细内容】
2021-03-24  Tags: Spring Boot  点击:(297)  评论:(0)  加入收藏
环境:SpringBoot2.3.9.RELEASE + SpringBootAdmin2.3.1说明:如果使用SpringBootAdmin2.4.*版本那么SpringBoot的版本也必须是2.4.*否则启动报错。Spring Boot Admin(SBA)是一个...【详细内容】
2021-03-22  Tags: Spring Boot  点击:(350)  评论:(0)  加入收藏
要让项目实现 ssl 免密登录,首先需要开启 https 。所以先从 Spring Boot 如何开启 https 说起。创建服务端证书为了开启 https ,我们需要一份证书。实际开发中,会在网上申请一...【详细内容】
2021-01-07  Tags: Spring Boot  点击:(159)  评论:(0)  加入收藏
短信发送”功能在企业应用系统开发中应该说算是很常见的了,典型的案例 如 “用户登录时可以通过手机号接收平台发送的验证码进行登录”、“用户通过手机号接收平台发送的短信...【详细内容】
2020-12-31  Tags: Spring Boot  点击:(186)  评论:(0)  加入收藏
在平常的开发过程中,我们经常需要对接口响应时间进行优化,但是呢个人感觉每次都去看浏览器的网络请求比较麻烦,因此,小编自己自己手写代码实现在控制台打印接口响应时间,这样非常...【详细内容】
2020-12-23  Tags: Spring Boot  点击:(713)  评论:(0)  加入收藏
前言在一个高并发系统中对流量的把控是非常重要的,当巨大的流量直接请求到我们的服务器上没多久就可能造成接口不可用,不处理的话甚至会造成整个应用不可用。那么何为限流呢?顾...【详细内容】
2020-12-15  Tags: Spring Boot  点击:(121)  评论:(0)  加入收藏
▌简易百科推荐
面向对象的特征之一封装 面向对象的特征之二继承 方法重写(override/overWrite) 方法的重载(overload)和重写(override)的区别: 面向对象特征之三:多态 Instanceof关键字...【详细内容】
2021-12-28  顶顶架构师    Tags:面向对象   点击:(2)  评论:(0)  加入收藏
一、Redis使用过程中一些小的注意点1、不要把Redis当成数据库来使用二、Arrays.asList常见失误需求:把数组转成list集合去处理。方法:Arrays.asList 或者 Java8的stream流式处...【详细内容】
2021-12-27  CF07    Tags:Java   点击:(3)  评论:(0)  加入收藏
文章目录 如何理解面向对象编程? JDK 和 JRE 有什么区别? 如何理解Java中封装,继承、多态特性? 如何理解Java中的字节码对象? 你是如何理解Java中的泛型的? 说说泛型应用...【详细内容】
2021-12-24  Java架构师之路    Tags:JAVA   点击:(5)  评论:(0)  加入收藏
大家好!我是老码农,一个喜欢技术、爱分享的同学,从今天开始和大家持续分享JVM调优方面的经验。JVM调优是个大话题,涉及的知识点很庞大 Java内存模型 垃圾回收机制 各种工具使用 ...【详细内容】
2021-12-23  小码匠和老码农    Tags:JVM调优   点击:(12)  评论:(0)  加入收藏
前言JDBC访问Postgresql的jsonb类型字段当然可以使用Postgresql jdbc驱动中提供的PGobject,但是这样在需要兼容多种数据库的系统开发中显得不那么通用,需要特殊处理。本文介绍...【详细内容】
2021-12-23  dingle    Tags:JDBC   点击:(13)  评论:(0)  加入收藏
Java与Lua相互调用案例比较少,因此项目使用需要做详细的性能测试,本内容只做粗略测试。目前已完成初版Lua-Java调用框架开发,后期有时间准备把框架进行抽象,并开源出来,感兴趣的...【详细内容】
2021-12-23  JAVA小白    Tags:Java   点击:(11)  评论:(0)  加入收藏
Java从版本5开始,在 java.util.concurrent.locks包内给我们提供了除了synchronized关键字以外的几个新的锁功能的实现,ReentrantLock就是其中的一个。但是这并不意味着我们可...【详细内容】
2021-12-17  小西学JAVA    Tags:JAVA并发   点击:(11)  评论:(0)  加入收藏
一、概述final是Java关键字中最常见之一,表示“最终的,不可更改”之意,在Java中也正是这个意思。有final修饰的内容,就会变得与众不同,它们会变成终极存在,其内容成为固定的存在。...【详细内容】
2021-12-15  唯一浩哥    Tags:Java基础   点击:(17)  评论:(0)  加入收藏
1、问题描述关于java中的日志管理logback,去年写过关于logback介绍的文章,这次项目中又优化了下,记录下,希望能帮到需要的朋友。2、解决方案这次其实是碰到了一个问题,一般的情况...【详细内容】
2021-12-15  软件老王    Tags:logback   点击:(19)  评论:(0)  加入收藏
本篇文章我们以AtomicInteger为例子,主要讲解下CAS(Compare And Swap)功能是如何在AtomicInteger中使用的,以及提供CAS功能的Unsafe对象。我们先从一个例子开始吧。假设现在我们...【详细内容】
2021-12-14  小西学JAVA    Tags:JAVA   点击:(22)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条