码迷,mamicode.com
首页 >  
搜索关键字:application master    ( 29562个结果
关于git正确clone指定分支
git clone 命令用于将远程分支拷贝到本地分支中,如果没有指定分支则会默认克隆主分支即master分支 想要clone指定分支,需要给这条命令添加额外参数 git clone -b branchName url // 如: git clone -b dev http://xxxxx.git 以 ...
分类:其他好文   时间:2021-06-18 19:18:52    阅读次数:0
k8s
Kubenetes是一个针对容器应用,进行自动部署,弹性伸缩和管理的开源系统。主要功能是生产环境中的容器编排。 K8S是Google公司推出的,它来源于由Google公司内部使用了15年的Borg系统,集结了Borg的精华。 和大多数分布式系统一样,K8S集群至少需要一个主节点(Master)和多个 ...
分类:其他好文   时间:2021-06-18 18:59:17    阅读次数:0
Creating Splash Screen in WPF
Introduction# When WPF application launched, it could take a while for a current language runtime (CLR) to initialize .NET Framework. As a result, fir ...
分类:Windows程序   时间:2021-06-17 17:20:33    阅读次数:0
springboot整合mybatis增删查改
1.选择依赖 SpringWeb,JDBC API, MybatisFramework, MysqlDriver 2.application.yml 将 application.properties改为application.yml(使用更简洁), application.yml文件内容如下: se ...
分类:编程语言   时间:2021-06-17 17:15:52    阅读次数:0
06-SpringBoot配置绑定
1.5 注解@ConfigurationProperties进行组件属性和资源配置文件中的值进行绑定 注解@ConfigurationProperties+@Component的方式将application.properties文件中的值绑定到某个组件的属性上。注意现在默认只能是绑定核心资源配置文件 ...
分类:编程语言   时间:2021-06-17 17:11:28    阅读次数:0
【代码生成器-01】准备工作(未完成)
初步设想 目标 Furion框架下,生成符合DDD要求的CRUD代码,可视化定义生成各种有章法的代码。 结构 ├ Domain ├ Xxxs Xxx.cs IXxxManager.cs XxxManager.cs ├ Application IXxxService.cs XxxService.cs ...
分类:其他好文   时间:2021-06-17 16:46:15    阅读次数:0
git的cherry-pick操作
将一个分支的需求合并到另一个分支,或者在多个分支上改同一bug时,cherry-pick是比较方便的。 cherry-pick后改变的是本地的代码,需要git push -u origin master或者git review -R -v推送到远程仓库。 原文链接:http://www.ruanyi ...
分类:其他好文   时间:2021-06-17 16:44:22    阅读次数:0
Note about fast-forwards (无法push远程仓库)
问题出现场景: 1,码云新建一个仓库,选择了LIENCE,(以前都没选择过,所以都没有出现该问题) 2,本地代码完成后,依次执行命令git init ==> git add . ==> git commit -m "xxx" ==> git remote add :https://gitee.com ...
分类:其他好文   时间:2021-06-16 18:35:36    阅读次数:0
免费堡垒机-jumpserver
服务安装与启动 官方文档:https://docs.jumpserver.org/zh/master/install/setup_by_fast/ 官方给出的一键安装脚本(注:要求系统内存≥4G): curl -sSL https://github.com/jumpserver/jumpserver ...
分类:其他好文   时间:2021-06-16 17:59:44    阅读次数:0
springcloud 使用feign
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:编程语言   时间:2021-06-16 17:34:00    阅读次数:0
29562条   上一页 1 ... 3 4 5 6 7 ... 2957 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!