<!--配置内部资源视图解析器-->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"></property>//前缀
<property name="suffix" value=".jsp"></property>//后缀
</bean>
2.在方法上添加@ResponseBody就可以返回json格式的字符串,但是这样配置比较麻烦,配置的代码比较多,因此,我们可以使用mvc的注解驱动代替上述配置
如果返回的是json,或对象(标注以下,系统会自动把对象转为json)
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"> <property name="messageConverters"> <list> <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"></bean> </list> </property> </bean> <mvc:annotation-driven/>
3.简洁版,替代以上有臭又长的代码.
<mvc:annotation-driven/>
原文:https://www.cnblogs.com/jiangzishun/p/12891274.html