1. 程式人生 > >2018-05-14學習SpringMVC

2018-05-14學習SpringMVC

efi tro suffix 掃描 ive 配置 組件 b- 圖片

利用註解的方式重構SpringMVC

<!--開啟Controller組件掃描-->

<context:component-scan base-package="com.zixue.test"/>

<!--開啟@RequestMapping註解映射-->
<mvc:annotation-driven/>
<!--配置ViewResolver組件-->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>

技術分享圖片

2018-05-14學習SpringMVC