- 博客(18)
- 收藏
- 关注
原创 activiti6初始化数据库
https://segmentfault.com/a/1190000020288808?utm_source=tag-newest
2020-03-30 13:31:16 670
原创 Activiti 个人任务(三种指派方式)
Activiti任务认领TaskService taskService;taskService.setAssignee(String taskId, String userId);taskService.claim(String taskId, String userId);taskService.setOwner(String taskId, String userId);关于上面三个...
2019-11-21 13:42:35 2311
原创 工作流中三种领取任务方式
https://www.az2x.com/2019/08/activiti%E4%BB%BB%E5%8A%A1%E8%AE%A4%E9%A2%86%E6%96%B9%E5%BC%8F/
2019-11-04 11:03:40 904
原创 MYSQL使用update相关子查询修改数据
今天碰到一个小需求,就简单创建了两张表实验了下。A表B表将A表中的date改为B表中的dateupdate A a,(select id,date from B ) b set a.date=b.date where a.id=b.id
2019-10-28 09:25:59 1381
原创 Java的String类中codePointCount方法
我也是今天看到这个方法,查看了很多文章,但是觉得个人理解起来有点困难,在此简单记录下。我们一般取字符串的长度,都会使用length方法。在String类中,维护了一个char数组来保存字符串,length方法也就是返回了char数组长度。举个例子,假设一个字符串为 String str = “????”;,我们要求它的长度,使用length的话会返回2,但是可能我们想要的结果是1,一个????在char数...
2019-10-27 10:32:45 1422 1
原创 Java中String的concat方法源码分析
源码展示public String concat(String str) { int otherLen = str.length(); if (otherLen == 0) { return this; } int len = value.length; char buf[] = Arrays...
2019-10-27 09:56:22 485
原创 在node.js响应流中设置多个Set-Cookie header属性
res.writeHead(200, [[‘Set-Cookie’, ‘mycookie1=value1’],[‘Set-Cookie’, ‘mycookie2=value2’]]);或者res.setHeader(‘Set-Cookie’, [ ‘mycookie1=value1’, ‘mycookie2=value2’]);...
2019-09-04 16:20:46 3261
原创 springboot项目设置不自动配置数据源
需要在程序入口文件加上注解@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
2019-05-09 16:31:22 7113 4
原创 feign调用服务携带headers
https://blog.csdn.net/zl1zl2zl3/article/details/79084368
2019-04-26 11:27:25 3073
原创 springcloud远程调用出现Could not extract response: no suitable HttpMessageConverter found for response
https://blog.csdn.net/sinat_34763749/article/details/82716475http://www.technicalkeeda.com/spring-tutorials/could-not-extract-response-no-suitable-httpmessageconverter-found-for-response-type
2019-04-26 08:04:06 7379
原创 idea创建springboot项目没有Spring Initializr
此时解决 办法就是去plugins里边搜Spring Assistant,装好后就重启Intellij。然后在创建Spring boot或者Spring cloud项目的时候通过Spring Assistant去创建
2019-04-17 08:05:50 1111
转载 nodejs中使用express获取http请求中的cookie
var express = require(‘express’);var cookieParser = require(‘cookie-parser’);app.use(cookieParser());var cookie = req.cookies[‘名称’];转自https://blog.csdn.net/qq_36060786/article/details/85239384...
2019-04-16 14:41:35 3840
原创 zuul解决com.netflix.client.ClientException: Load balancer does not have available server for clien:xxx
zuul网关中的配置:zuul:routes:api-a:path: /v1/userservice/**serviceId: userservice-v1 #等价于zuul.routes.=ignoredServices: ‘*’ #对任何服务都不自动创建路由max:host:connections: 500host:socket-timeout-milli...
2019-04-12 21:57:17 4283 2
原创 nodejs使用http报错: Request path contains unescaped characters
关于nodejs使用http发送请求到java后台,如果使用get请求方式,并且url中包含中文报错的解决方法nodejs中 : var str =encodeURI(‘需要处理的参数’);java : java.net.URLDecoder.decode(需要处理的参数, “UTF-8”);...
2019-04-12 21:49:23 15637 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人