2.1 SpringBoot代码解析 @SpringBootApplication:标注SpringBoot的启动类,该注解具备多种功能(后面详细剖析) SpringApplication.run(MySpringBootApplication.class) 代表运行SpringBoot的启动类,参 ...
分类:
编程语言 时间:
2020-01-31 22:48:15
阅读次数:
87
mysql的基本用法: 查库:select schema_name from information_schema.schemata 等同于 show databases 查表:select table_name from information_schema.tables where table_ ...
分类:
数据库 时间:
2020-01-31 15:55:44
阅读次数:
116
SELECT CONCAT( 'ALTER TABLE ' ,TABLE_NAME ,' ENGINE=INNODB, ROW_FORMAT=DYNAMIC; ') as `sql-commands-for-convert-engine` FROM information_schema.TABLES ...
分类:
数据库 时间:
2020-01-31 10:51:41
阅读次数:
99
使用注解配置spring mvc (1)spring mvc的配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http: ...
分类:
编程语言 时间:
2020-01-31 10:41:38
阅读次数:
76
整理了NLP领域的比赛、数据集、模型 |比赛|网站|主办方(作者)| | | | | |decaNLP|http://decanlp.com/|Salesforce |CLUE|https://github.com/CLUEbenchmark/CLUE|中文任务基准 |GLUE|https://gl ...
分类:
其他好文 时间:
2020-01-31 10:38:44
阅读次数:
771
# cat /root/.m2/settings.xml <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schema ...
分类:
其他好文 时间:
2020-01-31 00:51:11
阅读次数:
65
安卓版本高了就会有点问题,不能静态注册 令活动Main用来发广播,另一个接收器(不是Activity而是receiver)用来接收广播 注册文件 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schema ...
分类:
移动开发 时间:
2020-01-30 23:04:47
阅读次数:
115
写了四种对话框 布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas ...
分类:
移动开发 时间:
2020-01-30 22:59:00
阅读次数:
100
1、查询是否锁表 show OPEN TABLES where In_use > 0; 查询到相对应的进程 然后 kill id 2、查询进程 show processlist 补充: 查看正在锁的事务 SELECT * FROM INFORMATION_SCHEMA.INNODB_LOCKS; 查 ...
分类:
数据库 时间:
2020-01-30 22:43:02
阅读次数:
111
1.拦截器在一次请求中的执行流程 2.拦截器入门案例 2.1springMVC.xml的编写 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns ...
分类:
编程语言 时间:
2020-01-30 12:41:52
阅读次数:
76