2021年04月10日 springMVC(1)
- 有很多的时候我们学习的只是知识的表层,我们要努力把“了解”变为“精通”。这个系列就是为了记录Java基础梳理。
- 希望在学习的过程中不是把知识简单的记忆住,更重要的是做到“有趣”,怎么做到呢?将代码理解为构建世界的语言,我们所在的世界的一草一木都可以用代码解释,Java是面向对象的,也是存在于我们的生活的,Java生活就是这个道理。
- 在以后可能会加一些拓展,
- 学习理科、技术最依靠的是理解、模型,不断应用,在应用中理解,记忆,才能对知识的理解更上一层。
SSM
spring+Mybatis 组合
spring+Hibernate 组合
SSH
struts+Mybatis 组合
struts+Hibernate 组合
核心配置文件都有这三个东西
【1】URL的 处理映射器 handler(处理)
【2】控制器的 处理适配器 mvc(控制)
【3】(内部)资源视图解析器 view(视图)
loose 松开;解开 (物)
solve 解开;解决 (事)
resolve 解决;决心 (人)
重量级――是否为侵入式框架(要求用户自己的类继承框架的类或接口)
轻量级
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd "> <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> <prop key="hello.do">controller1prop> props> property> bean> <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"/> <bean name="controller1" class="com.hzy.demo.controller.Controllers" />beans>
这个地方报错,Typo: In word ‘springmvc’,所以改成了springMvc