摘要:
** Desktop]$ bc bc 1.07.1 Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc. This is free software with 阅读全文
摘要:
@Autowired注入为null的几种情况 1.在应用的Filter或Listener中使用了@Autowired 原因:因为Filter和Listener加载顺序优先于spring容器初始化实例,所以使用@Autowired肯定为null了~~ 解决:用ApplicationContext根据b 阅读全文
摘要:
https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
摘要:
1.上传jar到服务器的指定目录 2.在该目录下创建Dockerfile 文件 vi Dockerfile 3.编写Dockerfile FROM java:8-jdk MAINTAINER yy ADD map-1.0-SNAPSHOT.jar map.jar EXPOSE 8080 ENTRYP 阅读全文
摘要:
# 小于 <: < # 小于等于 <=: <= # 大于 >: > # 大于等于 >=: >= 示例代码: SELECT id FROM wm_news WHERE status = #{status} AND publish_time <= #{now} 阅读全文
摘要:
//方法 一(效率高) System.currentTimeMillis(); //方法 二(效率低) Calendar.getInstance().getTimeInMillis(); //方法 三(效率高) new Date().getTime(); 阅读全文
摘要:
错误: no service to register for nacos client... 解决方案: 添加applicatin.name = admin spring: cloud: nacos: discovery: server-addr: 120.26.250.164:8848 # 配置n 阅读全文
Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exce
摘要:
没有写@ApiImplicitParam( paramType = “path” ) 会提示类型转换String convert to Integer错误 /** * 删除 修改状态 有效/无效 * * @return */ @ApiOperation("修改状态/删除") @ApiImplicit 阅读全文
摘要:
1.条件查询 LambdaQueryWrapper<AdChannel> queryWrapper = new LambdaQueryWrapper(); queryWrapper.eq(AdChannel::getName, adChannel.getName()); AdChannel dBAd 阅读全文
摘要:
报错: found bindings for the following environments: - windows 64-bit with node.js 9.x - windows 64-bit with node.js 14.x 解决方法: 1、npm rebuild node-sass 阅读全文