码迷,mamicode.com
首页 >  
搜索关键字:repository    ( 4028个结果
git submodule 管理子项目
使用场景 拆分项目,当项目越来越大之后,我们希望 子模块 可以单独管理,并由 专门 的人去维护,这个时候只可以使用 git submodule 去完成。 常用命令 git clone <repository> --recursive # 递归方式克隆整个项目 git submodule add <r ...
分类:其他好文   时间:2020-01-10 22:18:16    阅读次数:91
CentOS 7.x 安装MongoDB
配置MongoDB的yum源 vim /etc/yum.repos.d/mongodb-org-3.4.repo #添加以下内容: [mongodb-org-3.4] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redha ...
分类:数据库   时间:2020-01-10 12:29:53    阅读次数:71
CentOS8下安装mysql8
安装Yum Repository [root@localhost ~]# wget https://repo.mysql.com//mysql80-community-release-el8-1.noarch.rpm 使用rpm来安装MySQL[root@localhost ~]# rpm -ivh ...
分类:数据库   时间:2020-01-09 22:50:32    阅读次数:168
git问题ERROR: Repository not found
报错内容:remote: Repository not found. fatal: repository 'https://github.com/pete/first_app.git/' not found 解决方法:三个命令中的一个git config --unset-all credential ...
分类:其他好文   时间:2020-01-09 20:59:37    阅读次数:74
chartmuseum官网README
API Helm Chart Repository retrieved when you run retrieved when you run retrieved when you run with the flag Chart Manipulation upload a new chart ver ...
分类:其他好文   时间:2020-01-08 21:24:25    阅读次数:314
Log4Net输出自定义文件日志。
using log4net; using log4net.Appender; using log4net.Core; using log4net.Layout; using log4net.Repository.Hierarchy; using System; using System.Collec ...
分类:Web程序   时间:2020-01-08 18:46:18    阅读次数:96
maven
1.settings.xml标签被注释掉了Local Repository的路径为:${user.home}/.m2/repository 该标签被打开,则Local Repository中的路径为settings.xml中<localRepository>标签配置的路径 2.web.xml is ...
分类:其他好文   时间:2020-01-08 14:15:01    阅读次数:88
SpringBoot2.2.2 中 jpa Repository的findOne 正确写法
@GetMapping("/user/{id}") public User getUser(@PathVariable("id") Integer id) { User user = new User(); user.setId(id); Example<User> example = Exampl ...
分类:编程语言   时间:2020-01-08 14:10:48    阅读次数:201
k8s安装dashboard(未解决)
第一种,用helm安装 helm repo update Hang tight while we grab the latest from your chart repositories... ...Skip local chart repository ...Successfully got an ...
分类:其他好文   时间:2020-01-07 01:04:49    阅读次数:120
注解方式实例化Java类
context:component-scan标签: Sprng容器通过context:component-scan标签扫描其base-package标签属性值指定的包及其子包内的所有的类并实例化被@Component、@Repository、@Service或@Controller等注解所修饰的类。 ...
分类:编程语言   时间:2020-01-06 23:10:49    阅读次数:227
4028条   上一页 1 ... 36 37 38 39 40 ... 403 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!