systemctl命令: 1、启动防火墙 systemctl start firewalld.service 或 systemctl start firewalld 2、关闭防火墙 systemctl stop firewalld.service 或 systemctl stop firewalld ...
分类:
系统相关 时间:
2020-07-12 10:40:13
阅读次数:
90
第一步: 按正常的创建MAVEN项目的步骤创建一个maven项目 第二步: 按正常的SpringBoot注解方式,添加控制器,启动类.并创建操作数据库的Dao接口和Dao.xml 以下是注意点: 1.依赖: <parent> <groupId>org.springframework.boot</gr ...
分类:
数据库 时间:
2020-07-12 00:38:47
阅读次数:
124
###在新安装mysql后进行启动发现报错 mysql启动服务命令 systemctl start mysqld@3306 Starting mysqld (via systemctl): Job for mysqld.service failed because the control proce ...
分类:
数据库 时间:
2020-07-12 00:31:47
阅读次数:
133
一、添加开机自启服务 在centos7中添加开机自启服务非常方便,只需要两条命令(以Jenkins为例): systemctl enable jenkins.service #设置jenkins服务为自启动服务 sysstemctl start jenkins.service #启动jenkins服 ...
分类:
其他好文 时间:
2020-07-11 23:11:48
阅读次数:
89
// cadence = 0 是表达式 int cadence = 0; // anArray[0] = 100 是表达式 anArray[0] = 100; // "Element 1 at index 0: " + anArray[0] 是表达式 System.out.println("Elem ...
分类:
移动开发 时间:
2020-07-11 23:05:59
阅读次数:
246
1. 基本概念 局域网 覆盖范围小 自己花钱买设备 带宽固定 自己维护 100米 带宽:10M 100M 1000M 广域网 距离比较远 花钱买服务 花钱买带宽 Internet ISP :电信运营商internet service producer 自己的机房 对网民提供访问Internet连接 ...
分类:
其他好文 时间:
2020-07-11 22:59:52
阅读次数:
80
Gnirehtet 该项目通过 adb 为 Android 设备提供 reverse tethering(反向网络连接),允许设备在插入计算机后,使用计算机的互联网连接 github地址:Genymobile/gnirehtet: Gnirehtet provides reverse tetheri ...
分类:
移动开发 时间:
2020-07-11 21:21:56
阅读次数:
208
1014 Waiting in Line (30分) Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting are ...
分类:
其他好文 时间:
2020-07-11 20:59:55
阅读次数:
116
<!--property标签用于初始化bean对象--> <!--name:set方法名定位--> <!--value:注入基本类型和string类型 ref:注入bean对象--> <bean id="accountService" class="com.example.service.impl. ...
分类:
其他好文 时间:
2020-07-11 19:46:06
阅读次数:
57
复杂类型: 1. 数组 2. List 3. Set 4. Map 5. Properties <!--array,list,map,props,set标签用于注入集合类型--> <bean id="accountService" class="com.example.service.impl.Ac ...
分类:
其他好文 时间:
2020-07-11 19:03:47
阅读次数:
43