摘要: 一、SpringBoot的主要优点: 1.快速整合第三方框架,无需配置文件。几乎可以是零配置的开箱即用(out-of-the-box)。开发者能够更加专注于业务逻辑 2.内置http容器(Tomcat、Jetty),最终以java应用程序进行执行 二、实现原理: 1.Maven依赖传递 <paren 阅读全文
posted @ 2019-06-07 21:30 wullll 阅读(5520) 评论(0) 推荐(0) 编辑
摘要: 转发:https://www.cnblogs.com/dfys/p/dfys_html_province-city-area.html <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> 阅读全文
posted @ 2019-06-07 20:30 wullll 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: 1通过端口查进程 netstat -ano | findstr "LISTENING"| findstr ":10000" 2.通过进程查应用(图为百度网盘的子程序) tasklist |findstr "2708" 3.通过进程id杀死进程 taskkill /f /t /im “2708” 阅读全文
posted @ 2019-06-07 20:29 wullll 阅读(2082) 评论(0) 推荐(0) 编辑
摘要: show processlist; 查看连接信息 SHOW VARIABLES LIKE '%max_con%'; 查看最大连接数 SET GLOBAL max_connections = 1000;修改最大连接数 在一个新项目中,几人开发时,发现mysql默认最大连接数不够用,增加最大连接数就没问 阅读全文
posted @ 2019-06-07 20:28 wullll 阅读(1456) 评论(0) 推荐(0) 编辑
摘要: 1.修改文件 vim /etc/rc.local rc.local是Linux启动程序在login程序前执行的最后一个脚本,解释https://blog.csdn.net/sinat_16791487/article/details/76696753 简单说: 第一行:目的在于避免这个脚本重复执行, 阅读全文
posted @ 2019-06-07 20:27 wullll 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 一、描述 技术要求:应能够对应用系统的最大并发会话连接数进行限制; 测试结果:未设置最大并发会话连接数 二、解决 https://blog.csdn.net/qq_38907374/article/details/79708113 在server.xml中添加maxConnections="100" 阅读全文
posted @ 2019-06-07 20:11 wullll 阅读(3232) 评论(1) 推荐(0) 编辑