上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: SQL语法顺序及优化点 语法顺序: select 【distinct】 ....from ....【xxx join】【on】....where....group by ....having....【union】....order by...... 执行顺序: from ....【xxx join】 阅读全文
posted @ 2020-11-10 11:17 编程小白1024 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 一,sql性能优化基础方法论 cpu消耗 内存使用 对磁盘,网络或其他I/O设备的输入/输出(I/O)操作。 二,sql调优领域 1. 应用程序级调优 sql语句调优 管理变化调优 2. 示例级调优 内存 数据结构 实例配置 3. 操作系统交互 I/O swap Parameters 三,sql优化 阅读全文
posted @ 2020-11-10 10:59 编程小白1024 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 对Pom文件进行配置(亲自尝试,已成功解决) <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version> 阅读全文
posted @ 2019-12-02 15:04 编程小白1024 阅读(3464) 评论(0) 推荐(0) 编辑
摘要: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> 阅读全文
posted @ 2019-11-30 14:06 编程小白1024 阅读(3308) 评论(0) 推荐(0) 编辑
摘要: 配置实例 ### 配置根 ### log4j.rootLogger = debug,console ,fileAppender,dailyRollingFile,ROLLING_FILE,MAIL,DATABASE ### 设置输出sql的级别,其中logger后面的内容全部为jar包中所包含的包名 阅读全文
posted @ 2019-11-28 14:04 编程小白1024 阅读(2784) 评论(0) 推荐(0) 编辑
摘要: 引入Bootstrap的顺序进行修改 <% //获取以/开始,不以/结尾的部分 pageContext.setAttribute("APP_PATH", request.getContextPath()); %> <script src="${APP_PATH}/static/js/jquery-1 阅读全文
posted @ 2019-11-26 17:30 编程小白1024 阅读(2696) 评论(0) 推荐(0) 编辑
摘要: 1、数据表没有设置主键 设置个主键就好 2、在mybits配置文档里设置了某些属性值为false 在mybatis配置文档里查看 enableSelectByPrimaryKey="true" enableUpdateByPrimaryKey="true" enableDeleteByPrimary 阅读全文
posted @ 2019-11-24 20:07 编程小白1024 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 解决方案 https://blog.csdn.net/zt15732625878/article/details/86493096 阅读全文
posted @ 2019-11-13 21:36 编程小白1024 阅读(2746) 评论(0) 推荐(0) 编辑
摘要: 解决Centos7 解决安装Nginx编辑make && make install的不成功 make: *** No rule to make target `build', needed by `default'. Stop. 解决方案 1、安装下面配置 yum -y install make z 阅读全文
posted @ 2019-11-13 18:00 编程小白1024 阅读(20977) 评论(0) 推荐(6) 编辑
摘要: 1、实现反向代理 实现案例(1):打开浏览器,在浏览器的地址栏中输入地址www.123.com,跳转到Linux系统Tomcat主页面 第一部在windows系统中配置host文件 host文件位置:C:\Windows\System32\drivers\etc 下的host 修改host文件:最后 阅读全文
posted @ 2019-11-12 20:28 编程小白1024 阅读(422) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页