-
spring MVC基本概念
查看全部 -
maven提供了坐标的概念,唯一标识查看全部
-
maven提供了坐标的概念,唯一标识查看全部
-
-servlet.xml配置
<?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:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config></context:annotation-config>
<!-- 注解扫描 -->
<context:component-scan base-package="com.mvcdemo">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<mvc:annotation-driven/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
查看全部 -
@(RequestParam("courseId")) Integer courseId可以用来将请求URL中传过来的参数绑定到controller具体方法的参数中
查看全部 -
将查询得到的course放进model里面,然后在jsp页面就可以使用${course.title}等方式访问数据
查看全部 -
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="209715200" />
<property name="defaultEncoding" value="UTF-8" />
<property name="resolveLazily" value="true" />
</bean>
查看全部 -
执行链查看全部
-
执行链查看全部
-
通过handlerAdapter来适配,去调controller查看全部
-
MVC就是通过dispatchServlet来实现前后端分离的,它也就是前端控制器查看全部
-
学习查看全部
-
%HOME%\.m2文件夹
就是用户根目录下的.m2目录,不同系统可能不同,
win系统一般是在:C:\用户\用户名\.m2(可通过 点击 开始-->运行,输入一个 ".",进入home );mac系统一般在/Users/用户名/.m2(可以通过终端 输入 cd ~ 来进入home);
另请注意,.m2这个目录一般是隐藏的。
查看全部 -
Spring MVC基本概念查看全部
-
Spring MVC基本概念
查看全部
举报