添加官方仓储 # Create the file repository configuration: sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/ ...
分类:
数据库 时间:
2020-11-07 16:13:45
阅读次数:
24
dao @Repository --写在dao层 service @Service --写在service层 controller @Controller --写在controller层 @Scope --写在多人访问controller上 属性注入 @Autowired --写在需要注入的属性上 ...
分类:
编程语言 时间:
2020-11-07 15:46:00
阅读次数:
20
1、 生成publicKey和password 找到maven资源库中druid的jar包,如:C:\Users\a\.m2\repository\com\alibaba\druid\1.1.6,其中a为用户名。 打开cmd,将路径切换至C:\Users\a\.m2\repository\com\a ...
分类:
数据库 时间:
2020-11-06 02:10:35
阅读次数:
32
Git和其他版本控制系统如SVN的一个不同之处就是有暂存区的概念。 先来看名词解释。 工作区(Working Directory) 就是你在电脑里能看到的目录,比如我的learngit文件夹就是一个工作区: 版本库(Repository) 工作区有一个隐藏目录.git,这个不算工作区,而是Git的版 ...
分类:
其他好文 时间:
2020-11-04 18:34:24
阅读次数:
14
tf git view /collection:http://tfs.mycompany.com.cn /teamproject:devops /repository:hellomaven /path:src/main/java/com/mycompany/hellomaven/App.java / ...
分类:
其他好文 时间:
2020-11-01 10:18:19
阅读次数:
16
/** 原始注解:用途,自己编写的类注入容器使用* @Component* @Controller* @Service* @Repository* 以上4个功能基本一样,类似加入<bean id="userDao" class="cn.UserImpl"></bean>** @Autowired:自 ...
分类:
编程语言 时间:
2020-10-29 09:39:15
阅读次数:
24
1.更新yum源 yum -y update 2.安装依赖 yum install -y yum-utils device-mapper-persistent-data lvm2 3.添加repository yum-config-manager --add-repo https://downloa ...
分类:
系统相关 时间:
2020-10-26 11:31:05
阅读次数:
35
怎么安装参见CentOS6.9安装Nexus3.19 ,接下来就是如何配置。打开我们安装后的nexus界面,用admin账号登陆,点击Server administration and configuration按钮: 点击Repository 我们可以看到nexus默认给我建好了一些仓库,其中包括 ...
分类:
其他好文 时间:
2020-10-18 09:27:43
阅读次数:
24
1.安装git 选择你喜欢的盘,傻瓜式安装 2.github http://github.com 注册一账号 登录 3.github创建仓库 1.右上角 有个 + ,点开,选择 new repository 2.输入仓库名称 和描述,创建 4.将项目添加到本地仓库中 在你的项目中右键 -》git b ...
分类:
Web程序 时间:
2020-10-16 11:15:05
阅读次数:
32
一、注册bean有两种手段 在类上加@Component、@Service、@Controller、@Repository等注解,作为可以被@Autowired注入的实例化对象; 在类上加@Configuration,方法上加@Bean,扫描时,将新对象(这里需要new)return到spring容 ...
分类:
编程语言 时间:
2020-10-09 21:10:17
阅读次数:
31