Alex_TD

上一页 1 ··· 5 6 7 8 9 10 下一页

2020年2月12日

Mysql---2 DDL DML DQL DCL

摘要: 1.DDL database definition language default charset utf8 collate utf8_general_ci; create database; create table; create view alter table; alter drop da 阅读全文

posted @ 2020-02-12 14:30 Alex_TD 阅读(143) 评论(0) 推荐(0) 编辑
Mysql数据库--1数据库操作

摘要: 1.DBMS : 数据库安装mysql8.0 2.数据库操作》linux mysql服务启动:service mysql start ==>1.数据库命令: ==》1.数据库连接命令: mysql -uroot -p1234 -P3306 (-u 用户名 -p 密码 -P 端口号) ==>2.数据库 阅读全文

posted @ 2020-02-12 12:02 Alex_TD 阅读(134) 评论(0) 推荐(0) 编辑

2020年2月11日

FFmpeg

摘要: ffmpeg -rtsp_trasport tcp -i "rtsp://username:password@ip:554" -y -ss 1 -q:v 2 -f image2 -vframes 1 pic%03d.jpeg -rtsp_transport tcp : tcp 防止花屏 -ss :截 阅读全文

posted @ 2020-02-11 18:24 Alex_TD 阅读(95) 评论(0) 推荐(0) 编辑
Servlet Web

摘要: 1.ServletContext HttpServlet Session Cookie ServletConfig HttpServletRequest HttpServletResponse ServletRequest ServletResponse (1) ServletContext : g 阅读全文

posted @ 2020-02-11 13:03 Alex_TD 阅读(75) 评论(0) 推荐(0) 编辑

2020年1月29日

Java web Springboot

摘要: 1.Spring boot 阅读源码:需要看 1 和 2两项内容。 ⒈. XXXAutoConfiguration :获取自动xxx的配置类 ⒉.XXXProperties:自动配置类装配配置文件中自定义的内容 ⒊. 导入静态资源:webMvcAutoConfiguration webMvcAuto 阅读全文

posted @ 2020-01-29 21:39 Alex_TD 阅读(186) 评论(0) 推荐(0) 编辑
Java 网络

摘要: 1.InetAdress 单例 InetAdress.getByName().... 2.InetSocketAdress 2.authentication 认证 authorization授权 阅读全文

posted @ 2020-01-29 18:10 Alex_TD 阅读(79) 评论(0) 推荐(0) 编辑

2020年1月27日

单词

该文被密码保护。 阅读全文

posted @ 2020-01-27 15:11 Alex_TD 阅读(0) 评论(0) 推荐(0) 编辑

2020年1月26日

Java 注解 反射

摘要: 注解:Java.lang.annotation; 1.定义: public @interface 注解名{String value(); int age();int id() default ""}; 2.编译器中注解:@Override @Deprecated @SuppressWarnings 阅读全文

posted @ 2020-01-26 20:55 Alex_TD 阅读(193) 评论(0) 推荐(0) 编辑
Java 线程状态

摘要: 线程状态:new 新生 start 准备就绪 运行状态 阻塞状态(sleep, wait,同步锁) 死亡状态 线程停止:1.标志位停止;2.自动停止,利用次数 线程休眠:模拟延时。每个对象都有一把锁,sleep不会释放锁。Thread.sleep(); 线程礼让:Thread.yield() 线程合 阅读全文

posted @ 2020-01-26 12:32 Alex_TD 阅读(106) 评论(0) 推荐(0) 编辑

2020年1月25日

Java Lambda

摘要: Lambda表达式 λ: 为什么使用Lambda表达式?只调用一次,需要创建一次对象,麻烦? 函数式接口: 任何接口,如果只包含唯一一个抽象方法,那么他就是一个函数式接口。 对于函数式接口,可以通过Lambda 表达式创建该接口的对象。 Lambda表达式是接口的实现简化写法 阅读全文

posted @ 2020-01-25 14:36 Alex_TD 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页