
CLAA
CLAA
ZHOU_VIP
这个作者很懒,什么都没留下…
展开
-
按发货单查询终端数量(request.getParameter(““)String转int)
request.getParameter("")String转int:/** * 按发货单查询终端数量接口 * * @param request * @param response * @return * @throws Exception */@RequestMapping(value="/dev/querydevnumbyord", method=RequestMet...原创 2018-09-17 19:16:53 · 525 阅读 · 1 评论 -
主键索引和非主键索引的区别
https://www.cnblogs.com/heishuichenzhou/p/10813463.htmlhttps://www.cnblogs.com/kubidemanong/p/10734045.html原创 2021-09-28 21:11:49 · 565 阅读 · 0 评论 -
图解车联网
原创 2021-05-22 07:01:20 · 273 阅读 · 0 评论 -
修改的时候要求出入标记disabled不能修改,但是值要传后台
修改的时候要求出入标记disabled不能修改,但是值要传后台,后台要判断解决方法:设置一个hidden属性传过去<input type="hidden" name="inoutflag" id="farm_log_hidden_inoutflag" ><div class="col-lg-3 col-sm-3"> <div class="form-group"> <label for="per_person_sex">出入标记<原创 2021-05-12 21:08:37 · 210 阅读 · 0 评论 -
Java Math.abs() 获取绝对值
public class Test{ public static void main(String args[]){ Integer a = -8; double d = -100; float f = -90; System.out.println(Math.abs(a)); System.out.println(Math.abs(d)); System.out.println(Math.abs(f)); }}8100.0.原创 2021-05-12 21:08:05 · 512 阅读 · 0 评论 -
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Double
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Double at com.sun.proxy.$Proxy880.countFarmmaterialInware(Unknown Source) at com.zte.claa.inficombo.app.framework.service.farmmaterial.impl.FarmmaterialServiceImpl.countFarmmater.原创 2021-05-11 21:24:44 · 5060 阅读 · 0 评论 -
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named
FarmmaterialInwareMapper中:double countFarmmaterialInware(Integer materialtype) throws Exception;修改:double countFarmmaterialInware(@Param("materialtype") Integer materialtype) throws Exception;FarmmaterialInwareMapper:package com.zte.claa.infic..原创 2021-05-11 21:23:45 · 265 阅读 · 0 评论 -
尚融宝
https://gitee.com/jiangwei_2020/loan一、尚融宝简介尚融宝是一个网络借贷信息中介服务平台,为个人投资者、个人融资用户和小微企业提供专业的线上信贷及出借撮合服务。二、技术栈1、后端SpringBoot 2.3.4.RELEASESpringCloud Hoxton.SR8:微服务基础设施 - 服务注册、服务发现、服务熔断、微服务网关、配置中心等SpringCloud Alibaba 2.2.2.RELEASEMyBatis Plus:持久层框架原创 2021-04-29 22:20:29 · 1844 阅读 · 0 评论 -
畅购商城
https://blog.youkuaiyun.com/weixin_43461520/article/details/107095045畅购商城项目是一个B2C的电商网站,采用了微服务架构,并且使用了前后端分离的方式进行开发。原创 2021-04-28 16:45:02 · 972 阅读 · 0 评论 -
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped alre
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already其实是xxxMapper文件缺少@Repository注解,加上即可。原创 2021-04-26 22:08:23 · 2721 阅读 · 0 评论 -
JAVA中基本数据类型和引用数据类型
一、基本数据类型:byte:Java中最小的数据类型,在内存中占8位(bit),即1个字节,取值范围-128~127,默认值0short:短整型,在内存中占16位,即2个字节,取值范围-32768~32717,默认值0int:整型,用于存储整数,在内在中占32位,即4个字节,取值范围-2147483648~2147483647,默认值0long:长整型,在内存中占64位,即8个字节-2^63~2^63-1,默认值0Lfloat:浮点型,在内存中占32位,即4个字节,用于存储带小数点的数字原创 2021-04-19 22:05:49 · 548 阅读 · 0 评论 -
float、double字段类型建表
保留一位小数保留两位小数USE `communitydb`;DROP TABLE IF EXISTS `t_comm_service_farmmaterial_plan`;CREATE TABLE `t_comm_service_farmmaterial_plan` ( `dataid` varchar(100) COLLATE utf8_bin NOT NULL, `title` varchar(100) COLLATE utf8_bin NOT NULL, `d.原创 2021-04-19 20:56:44 · 1408 阅读 · 0 评论 -
MySQL-decimal是什么数据类型
原创 2021-04-19 20:55:48 · 1313 阅读 · 0 评论 -
大觅网
Spring Cloud 微服务分布式架构项目开发实战—大觅网基于Spring Cloud的分布式微服务电商项目大觅网实战课程视频教程下载。本课程电商类大觅网以Spring Boot为项目基础骨架,本课程基于该网站为依托,深入实践时下最火爆的微服务框架Spring Cloud。项目包含Eureka注册中心、Zuul网关验证、Config分布式配置管理、Ribbon负载均衡、Feign接口调用、Hystrix容错处理、Sleuth微服务追踪、ELK+Kafka日志收集、RabbitMQ实现分布式事务等。原创 2021-03-20 15:34:31 · 1024 阅读 · 0 评论 -
Java8日期格式化DateTimeFormatter
import java.time.Instant;import java.time.LocalDateTime;import java.time.ZoneId;import java.time.format.DateTimeFormatter;import java.util.Date;public class Test{ public static void main(String[] args) { //获取当前时间 String time = DateTimeFormatter.原创 2021-03-20 15:28:04 · 520 阅读 · 0 评论 -
尚医通
尚医通是一个网上预约挂号系统,包含后台管理系统和前台用户系统,采用前后端分离开发模式。项目技术应用广泛,涵盖微服务、全栈、集群、分布式、高并发;技术应用场景合理,并非多技术的盲目堆叠;业务场景贴近实际,按照市场需求开发。项目后端技术栈,采用主流的SpringBoot+SpringCloud微服务架构,全面使用了目前流行的NoSQL技术,使用Redis缓存数据,使用MongoDB实现高并发读写,整合消息中间件RabbitMQ提高订单的并发量,同时还整合了定时任务,实现就医提醒功能,综合应用了阿里云OSS,短原创 2021-03-20 15:05:18 · 1454 阅读 · 0 评论 -
955不加班的公司名单
https://github.com/formulahendry/955.WLB原创 2021-03-16 18:41:21 · 113 阅读 · 0 评论 -
Timestamp
if(formBean.getActdate() !=null && !formBean.getActdate().trim().equals("")){ Date cTime = datetimeFormat.parse(formBean.getActdate()); c.setActdate(new Timestamp(cTime.getTime()));}else{ c.setActdate(new Timestamp(new Date().getTime()));}..原创 2021-03-04 11:24:18 · 176 阅读 · 2 评论 -
判断导入文件的格式类型mp4
function submit_precheck(){ var import_file = $("#imp_file").val(); if (import_file == undefined || import_file == null || import_file == ''){ swal('提示', '请选择待导入的JSON文件!','warning'); return false; } var idx = import_file.indexOf(".json"); if(idx .原创 2021-02-19 14:25:36 · 665 阅读 · 0 评论 -
JS基础_定时器简介
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript"> window.onload = function(){ //获取count var count = document.getElementById("count"); .原创 2021-01-20 22:04:36 · 223 阅读 · 0 评论 -
An internal error has occurred. Java heap space
解决办法:https://blog.youkuaiyun.com/u012110960/article/details/108488800原创 2020-12-28 10:11:27 · 667 阅读 · 0 评论 -
List转数组:java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String;
List<String> list= new ArrayList<String>();//根据小区id查询人行闸机List<ResourceShadow> shadowList = queryAreaEntranceBrakesByPlace(dgpData.getProjectid(), communityid);if(shadowList != null && shadowList.size() >0){ for (Resource...原创 2020-12-08 19:09:40 · 1039 阅读 · 0 评论 -
小马哥GitHub
https://github.com/mercyblitz/tech-weekly原创 2020-11-26 15:21:44 · 504 阅读 · 0 评论 -
for循环记住break跳出
List<DataModel> models = this.modelService.queryDataModelByDevtype(logicResform.getLog_res_devtype());if (models != null && models.size() > 0){ for (DataModel model : models){ if("channel".equals(model.getFieldname())){ String chan.原创 2020-11-24 16:04:07 · 331 阅读 · 0 评论 -
The variable argument type String of the method removePersonDev must be the last parameter
报错:可变参数注意事项:可变参数一个方法中只能有一个 如果在方法书写时,这个方法拥有多参数,参数中包含可变参数,可变参数一定要写在参数列表的末尾位置https://blog.youkuaiyun.com/weixin_43689161/article/details/105006534...原创 2020-11-14 14:00:21 · 666 阅读 · 0 评论 -
日志slf4j logback配置、log4j2配置
http://www.51gjie.com/javaweb/1122.html原创 2020-11-13 22:41:38 · 398 阅读 · 0 评论 -
js判断undefined
if(data!='' && data != null && data != undefined){ return ...}if (happentime == undefined || happentime == null || happentime == ''){ swal('提示', '发生时间不能不能为空!','info'); return false;}原创 2020-10-24 10:58:47 · 160 阅读 · 0 评论 -
MySQL-表分区
DROP TABLE IF EXISTS `t_comm_person_inoutlog`;CREATE TABLE `t_comm_person_inoutlog` ( `dataid` varchar(100) NOT NULL COMMENT '日志编号', `personid` varchar(100) NOT NULL COMMENT '人员编号', `collecttime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT .原创 2020-10-15 17:01:14 · 171 阅读 · 0 评论 -
SSM框架整合Activiti工作流
1.首先在maven项目的pom.xml文件中引入activiti工作流的jar包:<dependency> <groupId>org.activiti</groupId> <artifactId>activiti-engine</artifactId> <version>5.22.0</version> </dependency> <dependency>原创 2020-10-14 14:33:27 · 639 阅读 · 0 评论 -
Activiti学习:完成任务节点的处理
/** * 查询任务 */@Testpublic void findPersonalTask(){ //1.获取流程引擎对象 ProcessEngine engine = ProcessEngines.getDefaultProcessEngine(); //2.通过流程引擎对象获取任务service TaskService service = engine.getTaskService(); //3.查询任务 List<Task> list = service.cr.原创 2020-10-13 21:00:30 · 865 阅读 · 0 评论 -
Activiti学习:根据key启动流程
/** * 启动流程实例 */@Testpublic void startProcessInstance(){ //1.获取流程引擎对象 ProcessEngine engine = ProcessEngines.getDefaultProcessEngine(); //2.通过流程引擎对象获取运行时service服务对象 RuntimeService service = engine.getRuntimeService(); //3.通过这个service来启动流程,创建一.原创 2020-10-13 20:37:10 · 876 阅读 · 0 评论 -
ConcurrentHashMap原理分析(1.7与1.8)
https://www.cnblogs.com/study-everyday/p/6430462.html原创 2020-10-13 17:12:49 · 132 阅读 · 0 评论 -
spring在项目启动时就执行特定方法
实现initiailzingBean接口。afterPropertiesSet这个方法就会在项目启动时执行。@Servicepublic class ArraignedLogService implements InitializingBean { @Override public void afterPropertiesSet() throws Exception { System.out.println("我是通过实现接口 initializingBean来.原创 2020-10-13 17:01:19 · 474 阅读 · 0 评论 -
Activiti学习:部署流程定义
/** * 部署流程定义 */@Testpublic void deploymentProcessDefinition(){ //1.获取流程引擎对象 ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine(); //2.基于流程引擎对象获取流程部署服务对象 RepositoryService service = processEngine.getRepositoryService(); //3.通过.原创 2020-10-11 13:54:05 · 286 阅读 · 0 评论 -
Activiti学习:创建流程引擎
1.通过代码创建工作流使用的表public class TestActiviti { /** * 初始化流程引擎,生成23张表 */ @Test public void createTable(){ //1.创建一个流程引擎配置对象,基于静态工厂的方式创建 ProcessEngineConfiguration configuration = ProcessEngineConfiguration.createStandalone原创 2020-10-11 10:22:11 · 284 阅读 · 0 评论 -
Activiti学习:Eclipse安装activiti插件,画流程图
官方网站的地址:http://activiti.org/download.html原创 2020-10-09 17:04:12 · 686 阅读 · 0 评论 -
项目中常用的19条MySQL优化
https://segmentfault.com/a/1190000012155267原创 2020-09-29 17:04:18 · 131 阅读 · 0 评论 -
spring常用接口之InitializingBean
https://blog.youkuaiyun.com/weixin_34233856/article/details/93177804原创 2020-09-18 09:08:50 · 155 阅读 · 0 评论 -
HTML-隐藏div
通过设置display属性可以使div隐藏后释放占用的页面空间,如下style="display: none;"//隐藏document.getElementById("typediv1").style.display="none";//显示document.getElementById("typediv1").style.display="";https://www.cnblogs.com/apolloren/p/10959264.html...原创 2020-09-17 16:20:00 · 433 阅读 · 0 评论 -
短信验证码
https://www.cnblogs.com/wangdi0827/p/4506521.htmlhttps://blog.youkuaiyun.com/layman1024/article/details/72625655?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-5.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-原创 2020-09-16 16:34:48 · 142 阅读 · 0 评论