ICode9

精准搜索请尝试: 精确搜索
  • SpringBoot注入出现@org.springframework.beans.factory.annotation.Autowired(required=true)2021-11-22 10:58:00

    出现以下错误: Description: Field photoAlbum in com.example.pet2.controller.AlbumController required a bean of type 'com.example.pet2.pojo.PhotoAlbum' that could not be found. The injection point has the following annotations: - @org.springframework

  • Maven 依赖调解源码解析(三):传递依赖,路径最近者优先2021-11-21 01:34:24

    本文是系列文章《Maven 源码解析:依赖调解是如何实现的?》第三篇,主要介绍依赖调解的第一条原则:传递依赖,路径最近者优先。本篇内容较多,也是开始源码分析的第一篇,请务必仔细阅读,否则后面的文章可能就看不懂了。系列文章总目录参见:https://www.cnblogs.com/xiaoxi666/p/15583241.html。

  • Maven 依赖调解源码解析(四):传递依赖,第一声明者优先2021-11-21 01:34:03

    本文是系列文章《Maven 源码解析:依赖调解是如何实现的?》第四篇,主要介绍依赖调解的第二条原则:传递依赖,第一声明者优先。请按顺序阅读其他系列文章,系列文章总目录参见:https://www.cnblogs.com/xiaoxi666/p/15583241.html。 场景 路径最近者优先原则不能解决所有问题,比如这样的依赖关

  • Maven 依赖调解源码解析(五):同一个文件内声明,后者覆盖前者2021-11-21 01:33:09

    本文是系列文章《Maven 源码解析:依赖调解是如何实现的?》第五篇,主要介绍同一个文件内声明,后者覆盖前者的原则。请按顺序阅读其他系列文章,系列文章总目录参见:https://www.cnblogs.com/xiaoxi666/p/15583241.html。   场景 这次我们让 A 直接依赖 X,且在 A 的 pom.xml 中声明两次 X,分

  • [2021深育杯]zip-example2021-11-19 19:00:37

    https://files.cnblogs.com/files/blogs/715347/crc32-master.zip https://files.cnblogs.com/files/blogs/715347/example.zip 注意:用7Z压缩明文文件为zip文件不行,必须要用winrar压缩 然后解压: CRC32碰撞 swp文件恢复

  • 携带gtest的c++项目文件结构2021-11-18 22:06:48

    googletest 简单例子 https://github.com/bast/gtest-demo.git 环境搭建 demo文件目录 [sxy@DESKTOP-SXY gtest-demo_new]$ tree . └── gtest-demo ├── cmake #测试环境构建 │ ├── googletest.cmake │ └── googletest-d

  • jenkinsfile example2021-11-18 19:03:19

    def createVersion() { // 定义一个版本号作为当次构建的版本,输出结果 20191210175842_69 return new Date().format('yyyyMMddHHmmss') + "_${env.BUILD_ID}" } pipeline { agent any environment { //JCR_CREDS = credentials(' 61cf61c6-4e2a-47ed-8d29

  • linux - hash algorithm2021-11-18 11:31:19

    A Hashing Algorithm is a mathematical formula that takes a Message of arbitrary length as input and produces as output a representational sample of the original data. For instance, a rudimentary example of a hashing algorithm is simply adding up all the l

  • 【Postman使用】设置mock server构造mock data2021-11-16 20:35:21

    背景 在后端没完成开发时,我们可以mock的方式,按照后端接口的格式构造我们想要的request和对应的response、status code等,这样前端或者接口依赖方不需要依赖未完成开发的接口,而可以通过mock方式得到想要数据。   步骤 1. 首先创建一个collection,创建完成后点击“Mock colletion”

  • Let's Encrypt 证书 wget 报错2021-11-16 12:34:33

    最近发现一个奇怪的问题,网站使用 let's encrypt 的免费证书,浏览器访问时正常,但是wget的时候报错。报错信息如下: wget https://www.example.com --2021-11-16 13:00:42-- https://www.example.com/ Resolving www.example.com (www.example.com)... 47.91.21.201 Connecting to

  • 发布到maven center仓库2021-11-16 11:35:06

    发布到maven center仓库 官方说明: 为了让Maven用户利用项目生成的构件,必须将它们部署到maven center repository。 许多开源项目希望允许使用Maven构建的项目用户透明地访问项目的构件。 为了实现这一点,项目应该将其构件部署到中央存储库。 简单来说就是将我们自己写好的文

  • prometheus-05 grafana可视化2021-11-14 20:00:49

    目录grafana可视化1.Grafana服务器安装1.二进制安装2.容器安装服务发现1.基于文件的服务发现2.基于API的服务发现3.基于DNS的服务发现 grafana可视化 Prometheus有一个内置的仪表板和图形界面。非常简单,通常适合查看指标和呈现单个图表。为了给Prometheus添加一个功能更全面的可视

  • numpy中有关各种array的创建2021-11-14 18:34:50

    有关array的创建 创建规则矩阵 Array np.array(arr) Example: import numpy as np cars = np.array([5,10,12,6]) print(cars) Run: [5,10,12,6] Linspace np.linspace(start,end,num,endpoint) 创造间隔一样的点 start 起点 end 终点 num 需要几个点 endpoint 是否

  • 《中英双解》leetCode 119 Pascal‘s Triangle II2021-11-12 20:04:54

    Given an integer rowIndex, return the rowIndexth (0-indexed) row of the Pascal's triangle. In Pascal's triangle, each number is the sum of the two numbers directly above it as shown: 给定一个非负索引 rowIndex,返回「杨辉三角」的第 rowIndex 行。 在「杨辉三

  • Sharepoint server2019 通讯组(安全组)发送邮件问题2021-11-12 15:03:40

    首先上官方链接: https://docs.microsoft.com/zh-cn/sharepoint/administration/outgoing-email-configuration?tabs=CA2019farm%2C2019farm%2CCASEweb%2C2019web 原因是 组的话默认不能发送匿名邮件 方法1 .给需要发送的组修改属性,但这个方式不是很推荐,因为组一旦很多而且会有安全

  • 服务器今天中病毒,记录一次查杀木马过程2021-11-10 15:30:48

    前言 病毒木马查杀脚本使用的是clamAV , 它是开源工具包,用于检测特洛伊木马,病毒,恶意软件,以及其他威胁。 特点: 在centos7下也可以用yum, 提供病毒数据更新 可以扫描档案和压缩文件 1) clamv 的安装方式 环境–阿里云—epel源 Centos6 yum –y install clamav 1Centos7 yum insta

  • fabric运行错误汇总2021-11-10 10:33:23

    Error generating signCA for org org1.example.com: Failed storing key [ECDSAP256]: Failed storing ECDSA private key [open crypto-config/peerOrganizations/org1.example.com/ca/c2c87ceb2f1cc204c97f050832a92c405467e13a76823f48c30385a5c5191ea7_sk: permission de

  • 单调队列 monotonic queue2021-11-10 10:01:42

    239. Sliding Window Maximum Hard You are given an array of integers nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding win

  • SpringBoot快速整合Mybatis&MybatisPlus,java编程入门自学2021-11-09 14:02:53

    import lombok.NoArgsConstructor; import lombok.ToString; import lombok.experimental.Accessors; @Data // getter/setter @ToString // toString @AllArgsConstructor // 有参构造函数 @NoArgsConstructor // 无参构造函数 @TableName(“user”) @Accessors(chain = tru

  • Jenkins 流水线语法2021-11-07 22:58:18

    Jenkins 流水线语法_孔祥旭的博客-CSDN博客_jenkins流水线语法 字符串插值 Jenkins Pipeline使用与Groovy相同的语法进行字符串插值。Groovy的字符串插值支持可能会让很多语言新手感到困惑。虽然Groovy支持使用单引号或双引号来声明一个字符串,例如: def singlyQuoted = 'Hello'

  • MIT/Unit 5: Object Oriented Programming/10. An Extended Example2021-11-05 18:03:34

    Video: Building a Class      Video: Visualizing the Hierarchy Video: Visualizing the Hierarchy                          Video: Adding another Class              Video: Using Inherited Methods              Video: Gradeb

  • DNS SRV2021-11-05 17:32:45

           Services Record (SRV) Defined in RFC 2782. The SRV RR identifies the host(s) that will support a particular service. The MX RR is a specialised example of service discovery while the SRV RR is a general purpose RR to discover any service. The SR

  • 基于DoH的C2——本质上就是dns隧道做的c2封装在了https里2021-11-05 16:32:15

    浅析恶意软件通信技术:基于DoH的C2信道 XHJ2020 2021-10-20 13:45:56 55642 2 *本文仅用于技术分享与讨论,严禁用于其它用途,所带来的法律风险与本文无关。 背景概述 对僵尸程序、木马等具有远控能力的恶意软件而言,C&C信道不仅是其正常运行的基本需求,也是其维持自身健壮性、

  • mybatis 逆向生成插件的使用和方法说明2021-11-04 00:01:21

    一.使用 1.在maven的pom.xml的 <build></build>l中导入插件 <!--反向生成插件--> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId&

  • VC Spyglass CDC(四)CDC检查的流程2021-11-03 21:04:35

    Read Design CDC Setup 支持自动推断clock/reset,不一定准确,需要double check。 create_generated_clock用于生成时钟。 CDC Check CDC check分为四大类,Integrity Synchronization Convergence Glitch 下面对每一类列举一个典型问题 CDC Setup Violations Example create_r

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有