ICode9

精准搜索请尝试: 精确搜索
  • hbuilder git pull Host key verification failedfatal : Could not read from remote repository2021-11-04 16:32:22

    在安装完hbuilder 后配置好git,git clone正常,而git pull 是出现:Host key verification failedfatal : Could not read from remote repository .Please make sure you have the correct accessriahtsand the repository exists 解决办法:ssh-keyscan -H gitee.com >> ~/.ssh/k

  • 【DDD】Thoughtworks笔记(编码样例)2021-11-03 23:01:04

    参考:https://insights.thoughtworks.cn/backend-development-ddd/   战略设计: 更偏向于软件架构,得到限界上下文,拆分成多个微服务。   战术设计: 更偏向于编码实现。DDD战术设计的目的是使得业务能够从技术中分离并突显出来,让代码直接表达业务的本身,其中包含了聚合根、应用服务

  • jenkins:四.jenkins拉取git仓库代码,执行python脚本2021-11-03 14:35:34

        前言 自己公司内部的一般用gitlab,可以参考这篇https://www.cnblogs.com/liushui0306/p/12455673.html 打开Jenkins新建一个自由风格的项目     源码管理 Repository URL 代码仓库地址 Credentials git仓库登陆的账号和密码凭证 指定分支(为空时代表any)分支默认*/maste

  • MVC 框架搭建2021-11-03 11:02:02

    1.0 初步建立目录和项目     2.0 设置层之间的引用 IRepository引用 ModelRepository引用 Model,IRepositoryIServices引用 Model,IRepositoryServices引用 Model,IRepository,IServicesSite引用 Model,Common,IServices,WebHelperWebHelper引用System.Web.Mvc,IServices,Syste

  • 【Spring】使用SpringTest报错 java.lang.NoSuchMethodError2021-11-02 08:32:15

      完整报错信息: "C:\Program Files\Java\jdk1.8.0_301\bin\java.exe" -ea -Didea.test.cyclic.buffer.size=1048576 "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2021.2.2\lib\idea_rt.jar=53174:C:\Program Files\JetBrains\IntelliJ IDE

  • springboot启动日志:Multiple Spring Data modules found, entering strict repository configuration mode2021-10-31 23:05:25

    问题描述 最近启动springboot项目的时候,发现有一条日志:Multiple Spring Data modules found, entering strict repository configuration mode!,该日志虽然是INFO级别的,但强迫症看着实在是太难受了。所以花了一些时间去解决这个问题。这条日志的大概意思是,springboot发现了多个rep

  • idea maven 无法导包2021-10-30 15:58:02

    maven 配置 阿里云镜像配置: <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url> https://maven.aliyun.com/repository/central </url> <mirro

  • git lease make sure you have the correct access rights and the repository exists2021-10-29 13:04:04

    问题:   有一段时间没有用码云了,当输入 git push -u origin master命令出现Please make sure you have the correct access rights and the repository exists.错误, 原因:   是git服务器没有发现存储本地的ssh密钥。(git服务器已经存在我电脑的ssh秘钥) 解决方案:   总思路:重新

  • Maven进行clean时报错,解决方法2021-10-27 09:34:24

    Q1:由于网络原因,maven仓库中产生了后缀LastUpdated文件,再次clean直接报错 参考方法:https://www.cnblogs.com/DDgougou/p/12636770.html 自己认为最优解决方案:使用脚本,一次性清除所有的LastUpdated后缀的文件。 # linux脚本 # 这里写你的仓库路径 REPOSITORY_PATH=~/Documents/too

  • 【Java】关于获取注解的问题发现2021-10-26 21:34:59

    同事设置了个注解,想用Spring获取的Bean来找到Class获取注解 但是发现是空的,在查看的Spring返回Bean之后,发现这个Bean对象并不是原生的实例 而是被Spring代理增强的代理对象   为了复现这个问题,这里我写了个样例: 首先有两个样例注解(一个叫A 一个叫B,B也是一样的就不写了): package

  • maven clean install总是打包到本地users/.m2/repository下2021-10-25 15:05:21

    问题描述:         在将本地common代码重新打包到本地仓库时,总是回去寻找users/.m2目录下的仓库内,但是idea中已经将maven仓库设置为新的仓库。        idea中maven配置如下:  排查过程:        初步估计是Maven配置的问题,后查看maven/conf/setting.xml发现:  原因找

  • YZH-自动化问题fatal: Not a git repository (or any of the parent directories): .git2021-10-23 16:03:23

    YZH-自动化问题-fatal: Not a git repository (or any of the parent directories): .git 问题是不能切换分支 在终端处输入git branch,出现这个问题:fatal: Not a git repository (or any of the parent directories): .git 解决办法:输入git init,按照图片所示,出现下面的结果,然

  • Maven安装与配置2021-10-22 23:02:57

    下载maven https://maven.apache.org/download.cgi    解压文件后新建环境变量MAVEN_HOME,赋值D:\Program Files\apache-maven-3.8.3      编辑环境变量Path,追加%MAVEN_HOME%\bin\;     至此,maven已经完成了安装,我们可以通过DOS命令检查一下我们是否安装成功:     1.

  • maven--镜像/仓库--使用--改为国内地址等2021-10-18 23:30:18

    原文网址:maven--镜像/仓库--使用--改为国内地址等_IT利刃出鞘的博客-CSDN博客 简介         本文介绍maven镜像和仓库的用法。包括:仓库搜索的优先级、如何设置为国内的仓库地址等。 依赖搜索顺序 maven项目使用的仓库的方式 中央仓库。            这是默认的仓库。对

  • @Mapper和@Repository2021-10-18 13:59:11

    @Mapper是mybatis自身带的注解,但是只是用一个@Mapper的话在service层调用时会爆红,但是不影响使用。 @Repository是spring提供的注释,能够将该类注册成Bean。被依赖注入。 使用该注解后,在启动类上要加@Mapperscan,来表明Mapper类的位置。 可以单独使用@Mapper,也可以在@Mapper下面

  • 清除maven仓库lastUpdated文件2021-10-16 13:59:09

      使用maven管理项目时,经常会遇到因网络问题,导致jar包下载失败的情况。此时,点击重新下载,如果仓库里存在lastUpdated文件,maven不会重新下载对应的jar包。此时需删除lastUpdated文件后,才能重新下载。   一个一个的找,删除,很麻烦。但,写一个小脚本就可以轻松的批量删除了。

  • 添加EF2021-10-09 17:01:20

    1、添加类库,Models和Repository,目标框架.net 5.0     将WebApp设置为启动项,     添加项目之间的引用, 在Repository类库中引用Models类库,在AppWeb应用程序中引用Repository类库(不用引用Models类库也同样能使用Models下的类,因为Repository类库已经引用了Models类库,它们有级联

  • maven settings配置2021-10-06 23:33:14

    1、Maven本地仓库 <localRepository>D:/Program Files/Maven_Local_Repository</localRepository> 2、Maven远程仓库镜像 <!-- 华为镜像 镜像更新较快较全 --> <mirror> <id>huaweicloud</id> <mirrorOf>*</mirrorOf> <url>https://mirrors.

  • 【教程】IDEA Maven配置2021-10-06 15:33:30

    ✨IDEA Maven配置 可以下载使用自己的Maven 本文是对IDEA自带Maven进行配置 更改为以下内容 <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins

  • 报错no bean named xxxxx available2021-10-06 15:31:07

    确定在实现类上使用了注解,@Repository,并且开启了扫描包,且类旁边出现了叶子,点击叶子,会跳到配置类,即应该是注入成功了,但是测试的时候一直报错   no bean named  xxxxx available   解决方法: 1.  @Repository("ReaderInfoMapperImpl") 指定名字 2. 不使用注解,使用<bean>来注入

  • git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.2021-10-05 18:58:45

    参考链接 参考链接 错误 在使用git命令时git push -u origin master,出现如下报错的命令 git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

  • fatal: Not a git repository (or any of the parent directories): .git2021-10-05 12:30:29

    问题描述: 解决方案:

  • 解决 “fatal: Could not read from remote repository.“2021-10-03 21:31:49

    问题描述: 在使用Git将本地仓库推送到远程仓库的时候,发生了如下错误:“fatal: Could not read from remote repository.” 问题原因: 出现这错误一般是以下两种原因: 客户端与服务端未生成 ssh key 客户端与服务端的ssh key不匹配 为解决以上问题,我们需要重新生成一次ssh key ,并重新

  • pandas 查询mysql数据2021-10-01 15:34:29

    import pandas as pdimport pymysql repository = dict()def init_repository(): tab1 = (1,'test.test_account') tab2 = (2,'test.loan_apply') repository[tab1[0]] = tab1 repository[tab2[0]] = tab2 return repository class Mysql

  • [Docker]制作并发布 Docker 镜像2021-09-29 20:32:01

    查询配置完成的容器ID docker container ls 生成新的镜像 docker container commit ${container id} ${image name} 标注用户名和版本 docker image tag ${image name} ${user name}/${repository} 发布镜像 docker image push ${user name}/${repository}

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

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

ICode9版权所有