摘要: ** 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 阅读全文
posted @ 2021-09-27 19:20 厚我 阅读(39) 评论(0) 推荐(0) 编辑
摘要: @Autowired注入为null的几种情况 1.在应用的Filter或Listener中使用了@Autowired 原因:因为Filter和Listener加载顺序优先于spring容器初始化实例,所以使用@Autowired肯定为null了~~ 解决:用ApplicationContext根据b 阅读全文
posted @ 2021-08-16 20:19 厚我 阅读(342) 评论(0) 推荐(0) 编辑
摘要: https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
posted @ 2021-08-06 11:24 厚我 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-06-03 22:59 厚我 阅读(1225) 评论(0) 推荐(0) 编辑
摘要: # 小于 <: &lt; # 小于等于 <=: &lt;= # 大于 >: &gt; # 大于等于 >=: &gt;= 示例代码: SELECT id FROM wm_news WHERE status = #{status} AND publish_time &lt;= #{now} 阅读全文
posted @ 2021-04-22 15:18 厚我 阅读(6909) 评论(0) 推荐(0) 编辑
摘要: //方法 一(效率高) System.currentTimeMillis(); //方法 二(效率低) Calendar.getInstance().getTimeInMillis(); //方法 三(效率高) new Date().getTime(); 阅读全文
posted @ 2021-04-20 16:26 厚我 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 错误: no service to register for nacos client... 解决方案: 添加applicatin.name = admin spring: cloud: nacos: discovery: server-addr: 120.26.250.164:8848 # 配置n 阅读全文
posted @ 2021-04-14 13:45 厚我 阅读(2125) 评论(0) 推荐(0) 编辑
摘要: 没有写@ApiImplicitParam( paramType = “path” ) 会提示类型转换String convert to Integer错误 /** * 删除 修改状态 有效/无效 * * @return */ @ApiOperation("修改状态/删除") @ApiImplicit 阅读全文
posted @ 2021-04-13 11:14 厚我 阅读(1658) 评论(0) 推荐(0) 编辑
摘要: 1.条件查询 LambdaQueryWrapper<AdChannel> queryWrapper = new LambdaQueryWrapper(); queryWrapper.eq(AdChannel::getName, adChannel.getName()); AdChannel dBAd 阅读全文
posted @ 2021-04-13 11:09 厚我 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 报错: 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 阅读全文
posted @ 2021-04-12 14:37 厚我 阅读(1322) 评论(0) 推荐(0) 编辑