Spring @ResponseBody 输出中文乱码

在Spring 4.1中使用@ResponseBody直接输出json数据,得到的是中文乱码,可以Spring的配置文件中<beans>的扫描Controller之前加入

<bean
		class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
		<property name="messageConverters">
			<list>
				<bean
					class="org.springframework.http.converter.StringHttpMessageConverter">
					<property name="supportedMediaTypes">
						<list>
							<bean class="org.springframework.http.MediaType">
								<constructor-arg index="0" value="text" />
								<constructor-arg index="1" value="plain" />
								<constructor-arg index="2" value="UTF-8" />
							</bean>
						</list>
					</property>
				</bean>
			</list>
		</property>
	</bean>

这是抄来的,记一下!

你可能感兴趣的:(Spring @ResponseBody 输出中文乱码)