摘要: 清华大学:https://mirror.tuna.tsinghua.edu.cn/ 中科院:https://mirrors.ustc.edu.cn/ 网易:http://mirrors.163.com/ 阿里云:https://developer.aliyun.com/mirror/ 腾讯:http 阅读全文
posted @ 2022-11-08 15:41 yozi_bin 阅读(94) 评论(0) 推荐(0) 编辑

2022年11月18日

摘要: Tomcat和web项目中都存在有web.xml,当两个web.xml的url-pattern配置发生冲突时,会以当前项目工程的web.xml的配置为配置。 springMVC中的DispatcherServlet与原生Servlet的配置冲突,请求会被DispatcherServlet处理,而Di 阅读全文
posted @ 2022-11-18 11:17 yozi_bin 阅读(24) 评论(0) 推荐(0) 编辑

2022年11月17日

摘要: 基本结构helloworld el来匹配元素,#依据id匹配,.依据class匹配 data设置数据 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HelloWorld</title> </head> <b 阅读全文
posted @ 2022-11-17 19:18 yozi_bin 阅读(21) 评论(0) 推荐(0) 编辑

2022年10月27日

摘要: RESTful请求方式 查询: GET 添加/保存: POST 删除: DELET 修改: PUT SSM查询使用RESTful风格 无参请求 一般用于查询全部(selectAll) //设置当前请求方法为GET,表示REST风格中的查询操作 @RequestMapping(value = "/us 阅读全文
posted @ 2022-10-27 16:28 yozi_bin 阅读(32) 评论(0) 推荐(0) 编辑