上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 58 下一页
摘要: 思路: 1.使用FileZilla连接数据库并上传sql语句。把sql转码成Linux类型, 2.使用SecureCRT连接数据库,执行sql语句。 (1).连接数据库 db2 connect to APP2_81(数据库) user db2iapp2(用户名) using db2iapp2(密码) 阅读全文
posted @ 2020-06-23 10:29 小辣椒樱桃 阅读(546) 评论(0) 推荐(0)
摘要: 1.各方法介绍 mybatis逆向工程生成的mapper源码: import com.itheima.springmvc.pojo.Items; import com.itheima.springmvc.pojo.ItemsExample; import java.util.List; import 阅读全文
posted @ 2020-06-21 16:55 小辣椒樱桃 阅读(1405) 评论(0) 推荐(0)
摘要: 1、SpringMVC和Servlet 1.1.SpringMVC和Servlet关系 Servlet:性能最好,处理Http请求的标准。 SpringMVC:开发效率高(好多共性的东西都封装好了,是对Servlet的封装,核心的DispatcherServlet最终继承自HttpServlet) 阅读全文
posted @ 2020-06-20 19:33 小辣椒樱桃 阅读(187) 评论(0) 推荐(0)
摘要: @GetMapping用于将HTTP GET请求映射到特定处理程序方法的注释。具体来说,@GetMapping是一个作为快捷方式的组合注释@RequestMapping(method = RequestMethod.GET)。 @PostMapping用于将HTTP POST请求映射到特定处理程序方 阅读全文
posted @ 2020-06-20 16:00 小辣椒樱桃 阅读(722) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 58 下一页