首页 > 网名 正文
[给女孩子怎么发微信名字]给女孩子起小名字大全

时间:2023-05-31 作者:佚名

总有人说程序员不懂浪漫,其实他们都误会了。今天给大家分享一个小技巧,使用SpringBoot通过微信给你心爱的姑娘每日发一句浪漫情话,那样还不是必拿下~

准备工作

申请微信公众平台的测试号

申请微信测试公众号:;t=sandbox/index

创建成功后,可以看到appid和appsecret,这个后面认证时需要

申请模板

今天是:{{now.DATA}} 不管那一天,每一天都是想你的一天 当前城市:{{ci}} 今天的天气:{{}} 最低气温:{{low.DATA}} 度 最高气温:{{}} 度 今天是我们想恋的第:{{}} 天 距你的生日还有:{{bir_day.DATA}} 天 {{daily_engli}} {{daily_engli}}

新建成功后,记得保存模板Id后续有用

扫描关注该测试公众号

扫码关注后,记录微信号,后续推送通知用

申请百度天气

申请百度天气API:

完成认证后,创建一个应用,保存ak

申请天行数据的接口

申请天行数据:

  • 申请彩虹屁
  • 申请每日一句

申请完成后记得保存申请接口的KEY

开发工作

技术栈说明

  • springboot 2.7.5
  • swagger 3.0
  • MySQL 8.x
  • spring data jpa
  • openfeign

依赖组件

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="; xmlns:xsi="; xsi:schemaLocation=" ;> <modelVersion>4.0.0</modelVersion> <groupId>com.zhao</groupId> <artifactId>daily-weather</artifactId> <version>1.0.0</version> <name>daily-weather</name> <description>微信用户推送消息</description> <properties> <java.version>1.8<; <;UTF-8</; <;UTF-8</; <;2.7.5</; <;3.0.0</; <kni;3.0.3</kni; <;2.0.15<; <o;3.1.3</o; <;5.7.5</; </properties> <dependencies> <!--hutools--> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> <version>${}</version> </dependency> <!--fastjson--> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <version>${}</version> </dependency> <!--open feign--> <dependency> <groupId>org.;/groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <version>${o}</version> </dependency> <!--weixin-java-mp--> <dependency> <groupId>com.gi;/groupId> <artifactId>weixin-java-mp</artifactId> <version>3.3.0</version> </dependency> <!--lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!--swagger--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>${}</version> </dependency> <!--换掉默认皮肤--> <dependency> <groupId>com.gi;/groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>${kni}</version> </dependency> <dependency> <groupId>org.;/groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.;/groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.;/groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.;/groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </project>

配置文件

Server: port: 43310 # 微信配置 tencent: wechat: appId: 微信appid appSecret: 微信appSecret # 模板消息集合 templatelist: - type: 1 templateId: 微信模板id - type: 2 templateId: 微信模板id - type: 3 templateId: 微信模板id # 百度天气配置 baidu: server: ak: 百度数据的ak # 天行数据 tianxin: server: key: 天行数据的key spring: mvc: pathmatch: matching-strategy: ant_path_matcher datasource: type: com.zaxxer. driver-class-name: com.my url: jdbc:mysql://ip:3306/库名?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai username: root password: 564929 hikari: minimum-idle: 5 # 空闲连接存活最大时间,默认600000(10分钟) idle-timeout: 180000 # 连接池最大连接数,默认是10 maximum-pool-size: 10 # 此属性控制从池返回的连接的默认自动提交行为,默认值:true auto-commit: true # 连接池名称 pool-name: MyHikariCP # 此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟 max-lifetime: 1800000 # 数据库连接超时时间,默认30秒,即30000 connection-timeout: 30000 connection-test-query: SELECT 1 jpa: show-sql: true # 默认false,在日志里显示执行的sql语句 database: mysql database-platform: org. hibernate: ddl-auto: update #指定为update,每次启动项目检测表结构有变化的时候会新增字段,表不存在时会 新建,如果指定create,则每次启动项目都会清空数据并删除表,再新建 naming: #指定jpa的自动表生成策略,驼峰自动映射为下划线格式7 implicit-strategy: org. #physical-strategy: org.

统一数据封装

package com.z; /** * 对前端响应结果统一封装 */ @Slf4j @RestControllerAdvice(basePackages = {"com.z;}) public class ApiResponseAdvice implements ResponseBodyAdvice<Object> { /** * 打印统一请求响应规范 */ ApiResponseAdvice(){ log.info("启动请求统一响应规范... ..."); } /** * 判断是否需要对返回值进行封装 * @param returnType the return type * @param converterType the selected converter type * @return */ @Override public boolean supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType) { // 如果返回的结果是Re类型就不用封装 if ().equals(Re)){ return false; } return true; } /** * 对返回前端的值统一封装 * @param body the body to be written * @param returnType th

e return type of the controller method * @param selectedContentType the content type selected through content negotiation * @param selectedConverterType the converter type selected to write to the response * @param request the current request * @param response the current response * @return */ @Override public Object beforeBodyWrite(Object body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType, ServerHttpRequest request, ServerHttpResponse response) { if ().equal)){ // 如果是String类需要特殊处理 ObjectMapper objectMapper = new ObjectMapper(); try { // 设置响应数据格式为json re().add("content-type","application/json;charset=UTF-8"); return objec(body)); } catch (JsonProcessingException e) { throw new RuntimeException(e); } } return Re(body); }

工程结构

用户controller

package com.z; import java.u; /** * 用户信息管理视图层 */ @RestController @RequestMapping("/userInfo") @Api(tags = "用户信息管理") public class UserInfoRest { @Autowired private UserInfoService userInfoService; /** * 分页获取所有的用户 * @return */ @ApiOperation(value = "分页获取所有的用户") @PostMapping("/queryPage") public Page<UserInfo> queryUserPage(@PageableDefault Pageable pageable){ Page<UserInfo> userInfos = u(), ()); return userInfos; } /** * 添加或者修改用户 */ @ApiOperation(value = "添加或者修改用户") @PostMapping("/saveOrUpdate") public void saveOrUpdate(@RequestBody UserInfo userInfo){ u(userInfo); } /** * 删除用户 */ @ApiOperation(value = "删除用户") @DeleteMapping("/delete") public void deleteUserById(@RequestParam("id") Long id){ u(id); } }

调用第三方接口

package com.z; /** * 第三方接口天行数据 */ @FeignClient(value = "TianDataRemoteClient",url = "${}") public interface TianDataRemoteClient { /** * 获取彩虹屁 */ @GetMapping(value = "/caihongpi/index", consumes = {MediaTy}, produces = {MediaTy} ) String queryRainbow(@SpringQueryMap TianXinParam tianXinParam); /** * 获取优美的句子 */ @GetMapping(value = "/ensentence/index", consumes = {MediaTy}, produces = {MediaTy} ) String queryEnsentence(@SpringQueryMap TianXinParam tianXinParam); }

推送微信数据

package com.z; @Slf4j @Service public class PushDailyWechatImpl implements PushDailyWechat{ @Autowired private UserInfoService userInfoService; @Autowired private BaiduWeatherRemoteClient baiduWeatherRemoteClient; @Autowired private TianDataRemoteClient tianDataRemoteClient; /** 微信配置类 **/ @Autowired private WechatConfig wechatConfig; /** 模板列表**/ @Autowired private WechatTemplateList wechatTemplateList; /** ak **/ @Value("${baidu.ak}") private String ak; /** key **/ @Value("${}") private String key; /** * 给不同的用户推送消息 */ @Override public void pushWechat() throws WxErrorException { // 获取用户列表 List<UserInfo> userInfoList = u(); if (!Collec(userInfoList)){ // 根据用户的type类型和模板type进行匹配 for (UserInfo userInfo : userInfoList) { for (WechatTemplate template : wec()) { if ().equal())){ (), (),userInfo); } } } } } /** * 封装微信数据 * @param wechatId * @param templateId */ private void wechatData(String wechatId,String templateId,UserInfo userInfo) throws WxErrorException { // 创建配置信息 WxMpInMemoryConfigStorage wxStorage = new WxMpInMemoryConfigStorage(); wxS()); wxS()); WxMpService wxMpService = new WxMpServiceImpl(); wxM(wxStorage); // 创建模板信息 WxMpTemplateMessage templateMessage = WxM() .toUser(wechatId) .templateId(templateId) .build(); // 获取天气预报信息 BaiduWeatherParam baiduWeatherParam = BaiduWea() .district_id()) .data_type("all") .ak) .build(); String queryWeather = baiduWea(baiduWeatherParam); log.info("查询的百度天气信息为:{}",queryWeather); BaiduNowWeather baiduNowWeather = A(queryWeather, BaiduNowWea); List<BaiduForecastsWeather> baiduForecastsWeatherList = A(queryWeather, BaiduForecastsWea); log.info("baiduNowWeather:{},baiduForecastsWeather:{}",baiduNowWeather,baiduForecastsWeatherList); // 获取彩虹屁 TianXinParam tianXinParam = TianXinParam.builder().key).build(); String queryRainbow = (tianXinParam); List<TianRainbow> rainbowList = A(queryRainbow, TianRainbow.class); // 获取每日一句 String queryEnsentence = (tianXinParam); List<TianEnsentence> tianEnsentenceList = A(queryEnsentence, TianEn); // 封装模板数据 (new WxMpTemplateData("now", (0)),"#FFB6C1")); (new WxMpTemplateData("city",u(),"#B95EA6")); (new WxMpTemplateData("text",baiduNowWea(),"#173177")); (new WxMpTemplateData("high",baiduForeca(0).getHigh(),"#87cefa")); (new WxMpTemplateData("low",baiduForeca(0).getLow(),"#FF6347")); (new WxMpTemplateData("scq_day",(userInfo),"#FF1493")); (new WxMpTemplateData("bir_day",(userInfo),"#FF00FF" )); (new WxMpTemplateData("daily_english_cn",rainbowLi(0).getContent(),"#800080")); (new WxMpTemplateData("daily_english_en",tianEnsentenceLi(0).getEn(),"#FFA500")); log.info("发送的消息为:{}", JSON.toJSONString(templateMessage)); wxM().sendTemplateMsg(templateMessage); } /** * 计算想认识/想恋日期 * @return */ private String calScqDate(UserInfo userInfo){ // 获取第一次想认识的时间 if (userInfo)){ Date scqTime = u(); // 计算时间差 long between = Da(scqTime, Da(), Da); return S(between); } return ""; } /** * 计算生日 * @param userInfo * @return */ private String calBirData(UserInfo userInfo){ // 获取用户的出生日期 if (userInfo)){ Date birTime = u(); // 今日日期 Calendar today = Calendar.getInstance(); // 出生日期 Calendar birthDay = Calendar.getInstance(); // 设置生日 bir(birTime); // 修改为本年 int bir; bir)); if ) < )){ // 生日已经过了,计算明年的 bir = ActualMaximum) - ); bir += bir); } else { // 生日还没过 bir = bir) - ); } return S(bir); } return ""; } /** * 拼接今日时间 * @return */ private String pareDateNow(BaiduForecastsWeather baiduForecastsWeather){ // 获取当前日期 String now = Da(Da(), Da); // 获取星期几 String week = baiduForeca(); return now+" "+week; } }

定时任务

package com.z; /** * 推送消息到用户定时任务 */ @Component public class PushWechatJob { @Autowired private PushDailyWechat pushDailyWechat; /** * 每天早上7点推送到微信 * @throws WxErrorException */ @Scheduled(cron = "0 30 7 1/1 * ? ") void doJob() throws WxErrorException { (); } }

效果

推送到微信

本文信息为网友自行发布旨在分享与大家阅读学习,文中的观点和立场与本站无关,如对文中内容有异议请联系处理。

本文链接:https://www.paituo.cc/wangming/1038571.html

  • 相关阅读

    「给女孩子怎么发微信名字」给女孩子发微信不回意味着什么

    给女孩子怎么发微信名字,给女孩子发微信不回意味着什么,怎么给女孩子取名字相关介绍,在群群薄社群分析系统中,针对每个微信群成员提供了自定义信息录入的功能,比如可以录入名称,编码,性别,电话,邮箱,标签,生日,国籍,省份,城市,详细地址,其他信息等。 自定义信息录入 当有了大量的群成员

    『给女孩子怎么发微信名字』喜欢一个女孩子但是发微信不回怎么办!

    给女孩子怎么发微信名字,喜欢一个女孩子但是发微信不回怎么办,怎么给女孩子取名字相关介绍,在微信聊天中,我想大家也可以经常使用“小仙女”、“女神”等魅力词语。对女人来说再正常不过了。 但是,这些微信昵称,也是她们在日常生活中使用频率最高的一些称呼,甚至还有一些女生连名字都没有叫。 那么这类

    给女孩子怎么发微信名字—怎么给女孩子取名字!

    给女孩子怎么发微信名字,怎么给女孩子取名字,给女孩子取名字寓意比较好的字相关介绍,大家好,我是明旭。 每天更新创意壁纸简介,记得喜欢。 你做得再好,也还是有人指指点点。你即便一塌糊涂,也还是有人唱赞歌。所以不必掉进他人的眼神,你需要讨好的,仅仅是你自己。 本期主题: 用你的名字制作

    微信英文名字怎么查、好听的微信英文名字!

    微信英文名字怎么查,好听的微信英文名字,微信英文名字微信昵称男相关介绍,每有热点事件发生,网友总能以独特的视角看待问题,并留下许多犀利点评。本周有哪些热点事件引得网友吐槽呢?欢迎收看本期《一周辣评》。 文︱编辑部整理 图︱网络 1 在小米十周年演讲中,雷军发布了全球第一款

    微信名字旁边小耳朵是啥、微信名字旁边小耳朵啥意思

    微信名字旁边小耳朵是啥,微信名字旁边小耳朵啥意思,微信名字相关介绍,前不久,小米12系列新机上市。作为小米11 Pro用户,笔者根据发布会内容写了一篇二者之间简要比对分析的文章,发布后反响不错,大家的讨论很积极。不过,正如文章所说的,当时笔者还没拿到小米12 Pro真

    〈为什么微信头像会被改名字〉什么微信头像好

    为什么微信头像会被改名字,什么微信头像好,为什么微信头像更新不出来相关介绍,前天中午吃饭的时候,狗友突然给我发来一条快讯:微信支持修改微信ID了!!! 下一秒,我立刻丢下啃一半的葱油饼,抄起手机直接点进微信ID设置里,颤抖着按下空格,狂扣空格,删掉了我EEEEEEEX的名字缩

    (微信注册名字错了怎么改)微信视频号注册名字不可用!

    微信注册名字错了怎么改,微信视频号注册名字不可用,微信注册名字能改吗相关介绍,如今,分期购物越来越普遍,尤其是消费金额较大的电子产品,很多人都会选择分期付款。分期乐是一款面向年轻人提供分期消费的金融服务平台,是中国分期购物电商模式开创者。本文作者对其进行了拆解分析,希望对你有帮

    (处女座的微信名字带诗意)处女座好听的微信名字?

    处女座的微信名字带诗意,处女座好听的微信名字,处女座的微信名字女生相关介绍,导语:处女座:众生皆草木,唯你是青山!写尽千山,道不完的喜欢! 处女座是一个可以特别安静也可以特别热闹的星座。他们的情绪转变快,向来都是有一种风风雨雨的魅力。让人觉得来去随风,切换自如。他们善良起来舍