nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
整合
创建数据库
导入依赖
建立基本结构和配置框架
编写MyBatis.xml
编写Spring-dao.xml
编写Spring-service.xml
编写web.xml
编写Spring-mvc.xml
编写applicationContext.xml
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
注解配置Controller这里的19行是spring中的注解扫描,21行是不去处理静态资源,23行是配置处理器的适配器
12345678910111213141516171819202122232425262728293031<?xml version="1.0" encoding="utf-8"?><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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> <context:component-scan base-package="com.wsx.controller"/> <!-- 不处理静态资源--> <mvc:default-servlet-handler/> <!-- 配置处理器和适配器--> <mvc:annotation-driven/> <!-- 解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean></beans>
阅读全文
nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial
SpringMVC少写博客,多思考,多看官方文档, 那我就写一篇算了
更新: 写一篇是不可能写一篇的,这辈子都不可能只写一篇
# MVC
model(dao,service) + view(jsp) + controller(servlet)
## 实体类
我们的实体类可能有很多字段,但是前端传输的时候可能只会传输一两个数据过来,我们就没有必要吧前端传过来的数据封装成为一个实体类,这样很多字段都是空的,浪费资源,实际上我们会对pojo进行细分,分为vo、dto等,来表示实体类的一部分的字段
# 回顾jsp+servlet
## 创建项目
卧槽,还能直接创建一个空的maven项目,然后在其中创建子项目,惊呆了
maven-空骨架-name
导入公共依赖
阅读全文