java
多学学习吧
见贤思齐
展开
-
java文本相似度
找了不少方法也试了不少第三方接口,个人感觉这个对比纯汉字的相似度是最准的。比较数字和英文时有问题。可以试试SimHash的方式public static String balance(String source, String target) { if (source == null && target == null) { return 1f * 100 + "%"; } if (source == null ||原创 2021-08-12 18:08:07 · 1276 阅读 · 0 评论 -
微服务整合Activiti添加依赖后mybatis依赖报错
添加activiti依赖后启动项目失败,控制台输出:APPLICATION FAILED TO STARTDescription:An attempt was made to call a method that does not exist. The attempt was made from the following location:“”The following method did not exist:“”The method’s class, javax.persiste原创 2021-05-26 23:13:22 · 446 阅读 · 0 评论 -
springboot部署到tomcat
添加依赖:<!-- war包依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope>原创 2021-01-18 15:57:42 · 100 阅读 · 0 评论 -
Springboot+MyBatis配置多数据源
结构:先配置pom:<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency>原创 2020-07-16 17:54:02 · 117 阅读 · 0 评论 -
SpringBoot跨域请求
新建一个SpringBoot项目,端口8080,配置CORS:@Configurationpublic class MyWebMVCConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/book/**")//请求路径 .allowedHeaders("原创 2020-07-02 17:14:30 · 108 阅读 · 0 评论 -
小程序页面唤起微信支付+Java后台
之前做的,一直没时间记录,如果大家试了不好使应该是哪里忘拿过来了,可以帮忙提醒我一下,(自己系统内的实体类就不zhantie过来了),小程序内用户提现也做完了,过两天再更新,提现需要开通企业付款到零钱,需要开通商户九十天以上,并且保证连续三十日交易,谢谢啦。小程序发起请求:add: function(){ var that = this; //微信支付第一次签名 wx.request({ url: app.globalData.url + '/appInterfa原创 2020-06-24 17:51:20 · 924 阅读 · 0 评论 -
分享一个jar包下载网站
https://www.mvnjar.com非常好的网站资源齐全速度快原创 2020-05-28 11:07:44 · 248 阅读 · 0 评论 -
小程序订阅消息
小程序给微信用户推送通知,是订阅消息不是模板消息,模板消息已经不能用了,这个是我自己用公司小程序写的练习版,点击按钮后推送消息,wxml代码:<button bindtap="aaa">按钮</button>js代码: aaa: function () { wx.requestSubscribeMessage({ tmplIds: ['Dw-D...原创 2020-02-09 12:59:45 · 571 阅读 · 0 评论 -
小程序上传图片java后台
选择图片wxml中用的是ColorUI的组件,挺好用: <view class="cu-bar bg-white margin-top"> <view class="action"> 图片上传 </view> <view class="action"> {{imgList.length}}/4 </view>...原创 2020-01-20 14:52:02 · 164 阅读 · 0 评论 -
小程序发起微信支付,java后台
感谢博主:https://blog.csdn.net/u012667477/article/details/80940578,特别细致前言:应项目要求,需要使用微信小程序做支付,写完后告知手续费太高方案不予通过(宝宝心里苦,但宝宝不说)。此次开发在因站在巨人的肩膀上顺利完成。微信支付文档传送门:https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api...转载 2019-12-06 11:26:39 · 220 阅读 · 0 评论 -
Java极光推送
通过极光实现一个简单的推送功能。首先需要注册极光的账号,根据极光提供的文档先在开发者平台内创建一个应用。操作完之后你的安卓手机应该有一个JPush SDK Demo。进入应用中找到应用设置,找到你的AppKey和Master Secret:新建一个java项目,引入jar包,jar包在极光官网上都有,新建一个类。import cn.jpush.api.JPushClient;import...原创 2019-11-26 15:11:48 · 208 阅读 · 0 评论 -
MQTT简单实现
本人是个小白,最近因公司需要,学习MQTT,架构师不在,全靠自己,在网上找了很多,都是坑,自己整理一下,希望对大家也有一定帮助。 1.首先需要一个Apollo服务器。网站链接找不到了,有需要的可以找我要,现在官网的版本我也没看懂,。。。。。解压之后配置环境变量,和java环境一样,jdk环境也是必须的。 2.环境配好之后搭建服务器,可以百度一下,网上一大堆,接着就可以上代码了。 3.我新建...原创 2019-10-25 10:51:57 · 551 阅读 · 0 评论 -
java通过OpenOffice实现word转pdf
1.转化工具类代码public static int office2PDF(String sourceFile, String destFile) { try { File inputFile = new File(sourceFile); if (!inputFile.exists()) { ...原创 2019-09-30 10:33:41 · 217 阅读 · 2 评论 -
java导入excel
1.jsp传入excel文件,控制器接收文件@RequestMapping("/AuploadStuTem.action") @Transactional public String AuploadStuTem(@RequestParam("files") MultipartFile file,Integer cou_id,HttpServletRequest request,HttpSer...原创 2019-09-30 09:43:07 · 258 阅读 · 0 评论 -
java导出excel
1.jsp传入excel文件。控制器接收文件@RequestMapping("/AuploadStuTem.action")@Transactionalpublic String AuploadStuTem(@RequestParam("files") MultipartFile file,Integer cou_id,HttpServletRequest request,HttpServl...原创 2019-09-30 09:19:44 · 166 阅读 · 0 评论