spring mvc应用基于Java config配置是怎么启动的
发布网友
发布时间:2022-05-19 04:27
我来回答
共2个回答
热心网友
时间:2023-08-11 23:36
<!-- 包扫描 -->
<context:component-scan base-package="com.eask.chp.controller"></context:component-scan>
<context:annotation-config>
<!--视图解析器 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/view/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
<mvc:annotation-driven></mvc:annotation-driven>
热心网友
时间:2023-08-11 23:37
通过配置servletDispatcher来启动的啦