上一页 1 2 3 4 5 6 7 8 ··· 48 下一页
摘要: 安装提示sass版本不兼容64位 卸载sass 卸载时,可能安装 chromedriver,但是国外网站速度很慢,而且不易安装成功。 使用此命令安装: npm install chromedriver --chromedriver_cdnurl=http://cdn.npm.taobao.org/d 阅读全文
posted @ 2020-09-01 15:03 清晨的第一抹阳光 阅读(325) 评论(0) 推荐(0)
摘要: netstat -ano | findstr 61616 //列出进程极其占用的端口,且包含 80 tasklist | findstr 21884 taskkill -PID 21884 -F //强制关闭某个进程 阅读全文
posted @ 2020-08-08 23:22 清晨的第一抹阳光 阅读(270) 评论(0) 推荐(0)
摘要: MyBatis_cache Teacher.java: 1 package com.atguigu.bean; 2 3 import java.io.Serializable; 4 import java.util.Date; 5 6 public class Teacher{ 7 8 privat 阅读全文
posted @ 2020-07-01 17:22 清晨的第一抹阳光 阅读(146) 评论(0) 推荐(0)
摘要: MyBatis_dynamicSQL 代码示例: Teacher.java: 1 package com.atguigu.bean; 2 3 import java.util.Date; 4 5 public class Teacher { 6 7 private Integer id; 8 pri 阅读全文
posted @ 2020-07-01 17:13 清晨的第一抹阳光 阅读(142) 评论(0) 推荐(0)
摘要: MyBatis_sqlMapper 代码示例: Cat.java: 1 package com.atguigu.bean; 2 3 public class Cat { 4 5 private Integer id; 6 private String name; 7 private Integer 阅读全文
posted @ 2020-07-01 17:08 清晨的第一抹阳光 阅读(133) 评论(0) 推荐(0)
摘要: 1. 2. 3. 阅读全文
posted @ 2020-07-01 16:42 清晨的第一抹阳光 阅读(89) 评论(0) 推荐(0)
摘要: MyBatis简介 1、MyBatis;和数据库进行交互;持久化层框架(SQL映射框架); 1)、从原始的JDBC dbutils(QueryRunner) JdbcTemplate xxx;不用的 称为工具; 工具:一些功能的简单封装 框架:某个领域的整体解决方案;缓存,考虑异常处理问题,考虑部分 阅读全文
posted @ 2020-06-27 09:30 清晨的第一抹阳光 阅读(135) 评论(0) 推荐(0)
摘要: 代码示例: BookController.java: 1 package com.atguigu.controller; 2 3 import org.springframework.beans.factory.annotation.Autowired; 4 import org.springfra 阅读全文
posted @ 2020-06-23 19:04 清晨的第一抹阳光 阅读(176) 评论(0) 推荐(0)
摘要: SpringMVC运行流程: 1、所有请求,前端控制器(DispatcherServlet)收到请求,调用doDispatch进行处理 2、根据HandlerMapping中保存的请求映射信息找到,处理当前请求的,处理器执行链(包含拦截器) 3、根据当前处理器找到他的HandlerAdapter(适 阅读全文
posted @ 2020-06-23 08:44 清晨的第一抹阳光 阅读(170) 评论(0) 推荐(0)
摘要: 代码示例 ExceptionTestController.java: 1 package com.atguigu.controller; 2 3 import org.springframework.http.HttpStatus; 4 import org.springframework.ster 阅读全文
posted @ 2020-06-23 08:38 清晨的第一抹阳光 阅读(149) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 48 下一页