摘要: #SVN简介安装 ##SVN是什么 代码版本管理工具,它能记住你每次的修改,查看所有的修改记录,恢复到任何历史版本,恢复已删除的文件 ##SVN跟Git比,有什么优势 使用简单上手快,目录级权限控制,企业安全必备,子目录Checkout,减少不必要的文件输出 ##主要应用 开发人员用来做代码的版本管 阅读全文
posted @ 2021-09-27 00:09 LanceYa 阅读(260) 评论(0) 推荐(0) 编辑
摘要: #转发forward ##同一个控制器中 ##不在同一个控制器中 区别就是转发时带上控制器的路径和指明转发的路径 #重定向redirect 重定向输入的地址会定向到您所指定的地址 ##同一个控制器 从http://localhost:8088/SpringMVC01_war_exploded/use 阅读全文
posted @ 2021-09-20 22:52 LanceYa 阅读(44) 评论(0) 推荐(0) 编辑
摘要: #restful风格 ##1.不使用restful风格的写法 <td><a href="${pageContext.request.contextPath}/user/edit.do?id={user.uid}">修改</a></td> @RequestMapping("/edit") public 阅读全文
posted @ 2021-09-20 21:23 LanceYa 阅读(60) 评论(0) 推荐(0) 编辑
摘要: #url处理映射器的三种方式 ##1. BeanNameUrlHandlerMapping 通过url名字,找到对应的bean的名字进行映射 <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" 阅读全文
posted @ 2021-09-09 23:08 LanceYa 阅读(32) 评论(0) 推荐(0) 编辑
摘要: ##spring官方文档介绍 Spring lets you define multiple contexts in a parent-child hierarchy. The applicationContext.xml defines the beans for the "root webapp 阅读全文
posted @ 2021-09-09 18:14 LanceYa 阅读(57) 评论(0) 推荐(0) 编辑
摘要: #截图 #原因 idea未加载Tomcat下的jsp-api.jar和servlet-api.jar包 #解决思路: ##1.添加本地的TomCat去重新加载一下 步骤:File->Project Structure →Dependencies →Library →Appliaction Serve 阅读全文
posted @ 2021-09-09 17:35 LanceYa 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1、点击Run-Edit Configurations... 2、点击左侧“+”,选择Tomcat Server--Local 3.在Tomcat Server中点击 Configuration ,找到本地 Tomcat 服务器,再点击 OK按钮。 至此,IntelliJ IDEA配置Tomcat完 阅读全文
posted @ 2021-09-09 11:08 LanceYa 阅读(79) 评论(0) 推荐(0) 编辑
摘要: #MVC模式 MVC:MVC是一种设计模式,例如经典的JSP{Jsp+Javabean+Servlet} MVC的原理图 分析: M-Model 模型(完成业务逻辑:有javaBean构成,service+dao+entity) V-View 视图(做界面的展示 jsp,html……) C-Cont 阅读全文
posted @ 2021-09-09 09:53 LanceYa 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 移步博主主页:https://blog.csdn.net/ccj659 该篇博客详细地址为:https://blog.csdn.net/ccj659/article/details/53302951 阅读全文
posted @ 2021-09-08 23:11 LanceYa 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 移步博主主页:https://blog.csdn.net/guanhang89 详细地址:https://blog.csdn.net/guanhang89/article/details/85042560 阅读全文
posted @ 2021-09-08 22:41 LanceYa 阅读(93) 评论(0) 推荐(0) 编辑