码迷,mamicode.com
首页 >  
搜索关键字:xsd schema    ( 5371个结果
SpringBoot-02-入门解析(IEDA)
2.1 SpringBoot代码解析 @SpringBootApplication:标注SpringBoot的启动类,该注解具备多种功能(后面详细剖析) SpringApplication.run(MySpringBootApplication.class) 代表运行SpringBoot的启动类,参 ...
分类:编程语言   时间:2020-01-31 22:48:15    阅读次数:87
SQL注入--sqli-labs(1-4关)
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
SpringMVC 注解配置
使用注解配置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的比赛和数据集
整理了NLP领域的比赛、数据集、模型 |比赛|网站|主办方(作者)| | | | | |decaNLP|http://decanlp.com/|Salesforce |CLUE|https://github.com/CLUEbenchmark/CLUE|中文任务基准 |GLUE|https://gl ...
分类:其他好文   时间:2020-01-31 10:38:44    阅读次数:771
阿里maven
# 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
Android基础——广播(静态注册)
安卓版本高了就会有点问题,不能静态注册 令活动Main用来发广播,另一个接收器(不是Activity而是receiver)用来接收广播 注册文件 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schema ...
分类:移动开发   时间:2020-01-30 23:04:47    阅读次数:115
Android基础——对话框
写了四种对话框 布局文件 <?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
MySQL-死锁查询
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
springmvc中自定义拦截器以及拦截器的执行过程
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
5371条   上一页 1 ... 49 50 51 52 53 ... 538 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!