2021年3月25日
摘要: @Query(value = "select name,author,price from Book b where b.price>?1 and b.price<?2")List<Book> findByPriceRange(long price1, long price2); @Query(va 阅读全文
posted @ 2021-03-25 18:15 qiao1127 阅读(114) 评论(0) 推荐(0)
摘要: html: 1 <!-- 图片文本框 --> 2 <input type="file" class="form-control" id="file" name="file" onchange="javascript:preview(this)"> 3 <!-- 这个是在上传之前回显图片图片展示 -- 阅读全文
posted @ 2021-03-25 18:10 qiao1127 阅读(761) 评论(0) 推荐(0)
  2021年2月26日
摘要: docker安装rabbitmq docker常用命令 查看镜像:docker images 拉取镜像:docker pull 查看所有容器:docker ps [a] 删除镜像:docker rmi IMAGE_ID 删除容器:docker rm CONTAINER_ID 启动/关闭的容器:doc 阅读全文
posted @ 2021-02-26 18:50 qiao1127 阅读(67) 评论(0) 推荐(0)
  2021年2月24日
摘要: 1、开始 》运行 》cmd,调出命令窗口。2、输入命令:netstat -ano,列出所有端口的情况。在列表中我们观察被占用的端口,比如是49153,首先找到它。3、查看被占用端口对应的PID,输入命令:netstat -aon|findstr "49153",回车,记下最后一位数字,即PID,这里 阅读全文
posted @ 2021-02-24 10:23 qiao1127 阅读(80) 评论(0) 推荐(0)