在eclipse里面怎么运行maven配置的spring mvc
1 回答
PIPIONE
TA贡献1829条经验 获得超9个赞
首先是配置文件,contextConfig.xml文件要配置好,这是第一步。其次,。在web.xml里面配置监听,还有对contextLocation的位置的设置。,
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
添加回答
举报
0/150
提交
取消
