1.bin bin目录主要是用来存放tomcat的命令,主要有两大类,一类是以.sh结尾的(linux命令),另一类是以.bat结尾的(windows命令)。 重要: 很多环境变量的设置都在此处,例如可以设置JDK路径、TOMCAT路径 startup 用来启动tomcat shutdown 用来关 ...
分类:
其他好文 时间:
2021-06-02 16:00:31
阅读次数:
0
repo sync --helpUsage: repo sync [<project>...] Options: -h, --help show this help message and exit显示此帮助消息并退出 -f, --force-broken continue sync even if ...
分类:
其他好文 时间:
2021-06-02 14:35:51
阅读次数:
0
引入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka --> <dependency> <groupId>org.springframework.kafka</groupId> <art ...
分类:
编程语言 时间:
2021-06-02 14:22:43
阅读次数:
0
时间复杂度:O(N2) 空间复杂度:O(1) 稳定性:稳定 // 冒泡排序 void bubble_sort(int list[], int listSize) { int i, j, flag; int temp; for (i = listSize - 1; i >= 1; --i) { fla ...
分类:
编程语言 时间:
2021-06-02 13:42:30
阅读次数:
0
MyBatis_Plus 代码生成器 开启Mapper接口扫描 @Configuration @EnableTransactionManagement @MapperScan("com.hu.mylearn.mapper") public class MyBatisPlusConfig { // 旧 ...
分类:
其他好文 时间:
2021-06-02 13:39:52
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 13:29:18
阅读次数:
0
前端资源准备好index.html和login.html 目录结构: urls.py设置: from django.views.generic import TemplateView urlpatterns = [ # path('admin/', admin.site.urls), path('a ...
分类:
其他好文 时间:
2021-06-02 13:18:59
阅读次数:
0
讨论部分代码: # Q1: Jacket Weather? def wears_jacket_with_if(temp, raining): """ >>> wears_jacket_with_if(90, False) False >>> wears_jacket_with_if(40, Fals ...
分类:
其他好文 时间:
2021-06-02 12:09:33
阅读次数:
0
美食数据分析 Ⅰ.项目结构 代码已放置GitHub上 ─foot_meishijie│ app.py│├─.idea│ │ .gitignore│ │ foot_meishijie.iml│ │ misc.xml│ │ modules.xml│ │ vcs.xml│ │ workspace.xml│ ...
分类:
其他好文 时间:
2021-06-02 11:57:24
阅读次数:
0
4 .表的约束 为了防止数据表中插入错误的数据 ,在MySQL中,定义了一些维护数据库完整性的规则,即表的约束。 我在这里列举一下约束条件和说明啊: 约束条件 说 明 PRIMARY KEY 主键约束,用于唯一标识对应的记录 FPREIGN KEY 外键约束 NOT NULL 非空约束 UNIQUE ...
分类:
其他好文 时间:
2021-05-24 17:06:38
阅读次数:
0