- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有用于练习的网络应用程序。并且有关于 json 返回的问题。
编码为UTF-8的unicode字符串通常存储在orcl数据库中。在服务器阶段这个 unicode 字符串是正常状态但在前端(angularjs)中,这个 unicode 字符串显示为问号。前端所有unicode字符串都显示为问号。
我现在已经尝试了很多方法并查找了很多地方来解决这个问题。我不确定我必须为此做什么。
我使用 Spring 3.0.5 、Angular.js 1.2、oracle 数据库、tomcat 7。
这是 Controller 方法。
@RequestMapping(value = {"/categories"}, method = RequestMethod.GET, headers = "Accept=application/json")
@ResponseBody
public ResponseEntity<String> getCategories() throws ParseException, UnsupportedEncodingException {
List<Category> categories= postService.getCategories();
HttpHeaders headers = new HttpHeaders();
headers.add("Content-Type", "application/json; charset=utf-8");
if (categories == null) {
return new ResponseEntity<String>(headers, HttpStatus.NOT_FOUND);
}
return new ResponseEntity<String>(JSONResponseUtil.getJSONString(categories), headers, HttpStatus.OK);
}
这是我的 applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url" value="jdbc:oracle:thin:@:1521:ORCL" />
<property name="username" value="" />
<property name="password" value="" />
<property name="maxActive" value="20" />
<property name="maxWait" value="6000" />
<property name="poolPreparedStatements" value="true" />
<property name="defaultAutoCommit" value="true" />
<property name="initialSize" value="10" />
<property name="maxIdle" value="20" />
<property name="validationQuery" value="select sysdate from dual" />
<property name="testWhileIdle" value="true" />
<property name="timeBetweenEvictionRunsMillis" value="7200000" />
</bean>
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="typeAliasesPackage" value="acutls.model" />
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="/WEB-INF/mybatis-config.xml" />
<property name="mapperLocations">
<array>
<value>classpath*:/acutls/mybatis/repository/mapper/**/*.xml</value>
</array>
</property>
</bean>
<bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg name="sqlSessionFactory" ref="sqlSessionFactoryBean" />
</bean>
<tx:annotation-driven transaction-manager="transactionManager" />
和第二个 Spring 配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="acutls" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
</bean>
<context:annotation-config />
<mvc:annotation-driven/>
<mvc:resources location="/UploadedImage/" mapping="/UploadedImage/**"/>
<mvc:resources location="/resources/" mapping="/resources/**"/>
<mvc:view-controller path="/Login" view-name="/resources/templates/login.html"/>
<mvc:view-controller path="/" view-name="/resources/templates/index.html"/>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=utf-8</value>
<value>application/json</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
</beans>
和angular.js查看html文件,数据存储在$scope.categories
<div class="modal fade" id="beforeWriteModal" tabindex="-1"
role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div align="center" class="modal-content">
<div class="modal-header">
<h4 class="modal-title">where did you travel?</h4>
</div>
<div class="modal-body-beforeWriteModal">
<input class="form-control" ng-blur="checkPostInfo()" type="text" ng-model="post.title" placeholder="enter title here" required />
<select class="form-control" ng-model="post.category" ng-options="c.categoryId as c.categoryName for c in categories"></select>
</div>
<div align="left" class="modal-footer">
<input id="postcheckbtn" class="btn btn-primary" type="button"
value="submit" ng-click="hideinfomodal()" />
</div>
</div>
</div>
</div>
和示例数据
{
"postId": "POST14042622131875",
"realPath": "1398517998159_8.jpeg",
"title": "신혼여행",
"textContent": "",
"nickName": "Demian",
"userId": "Demian",
"categoryName": "스페인",
"categoryId": "ES"
}
和错误数据
{
"postId": "POST14042622131875",
"realPath": "1398517998159_8.jpeg",
"title": "????",
"textContent": "",
"nickName": "Demian",
"userId": "Demian",
"categoryName": "???",
"categoryId": "ES"
}
最佳答案
您应该设置 ResponseEntity header ,例如
@RequestMapping("/test22")
@ResponseBody
public ResponseEntity<String> test22(){
MultiValueMap<String, String> map=new LinkedMultiValueMap<>();
map.put("Content-Type", Lists.newArrayList("text/html;charset=UTF-8"));
return new ResponseEntity<String>("you body",map , HttpStatus.OK);
}
未设置 header 内容类型将使用默认字符集 ISO-8859-1
StringHttpMessageConverter
@Override
protected void writeInternal(String str, HttpOutputMessage outputMessage) throws IOException {
if (this.writeAcceptCharset) {
outputMessage.getHeaders().setAcceptCharset(getAcceptedCharsets());
}
Charset charset = getContentTypeCharset(outputMessage.getHeaders().getContentType());
StreamUtils.copy(str, charset, outputMessage.getBody());
}
关于java - Spring 3.0返回的json字符串显示为问号(ResponseEntity),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37856955/
现在我需要我的 Controller 根据业务逻辑返回 2 种不同类型的对象,所以我的问题是我应该使用 ResponseEntity 或者我应该使用: ResponseEntity 这种返回类型有
我知道原始类型在代码中很糟糕,而且 List和 List ,例如,是不同的东西。但是 ResponseEntity 的情况呢?和 ResponseEntity ?在 @RestController 中
在 Spring Webflux 中, ResponseEntity 与 Mono 作为休息 Controller 的返回类型有什么区别? 什么时候最合适? 跟进这个问题,假设我需要返回一个列表,或者
我正在重构一些代码,这是下面示例的更大范围。 “主”类中充满了这些 try/catch block ,并且模糊了代码正在执行的操作。 我没有使用 Spring,而是使用 JaxRs 来处理异常。这将是
我正在尝试模拟 Controller 的 post 方法。我希望它返回状态代码 201(CREATED) 。但它给出了状态代码 200。下面给出的是代码这是我的 Controller 类 packag
我经常在代码中使用的结构如下: @RestController public class HelloController { @Autowired private HelloService h
请找到下面提到的代码:我需要帮助为 ResponseEntity 编写 Mockito 条件: if(isObjectPresent(ePartnerRestRequestDTO)) {
这个问题已经有答案了: Why do I get the error "File cannot be resolved to a type"? (5 个回答) 已关闭 3 年前。 我尝试在我的其余端点
我有下面的函数,我试图用我的对象列表返回 ResponseEntity。我不知道我错过了什么。 @RequestMapping(method = RequestMethod.GET, path
我对 Spring 有点陌生。我做了以下方法: public ResponseEntity updateBorder(@Valid @RequestBody Borders borders) thro
我需要模拟一项服务。我在ResponseEntity中得到空值一边 mock 全类同学一边回答。 需要模拟的方法: public List getExpression(String expressVi
我想在浏览器中显示 Controller (使用 Spring)返回的 ResponseEntity 的主体: return new ResponseEntity<>(l.getReachableDa
我正在返回一个用于文件下载的 ResponseEntity。 @RequestMapping("/download") public ResponseEntity download(){ by
这个问题引用了问题: Setting the response content-type without using HttpServletResponse 使用以下代码: @RequestMappi
我正在开发一个 spring 3.2.7 应用程序,它通过输出字节数组 ResponseEntity 的 spring Controller 将存储在数据库中的签名作为 base64 字符串发送回用户
我对 Spring 框架还很陌生,我正在尝试通过开发示例项目来学习 也许这是一个愚蠢的问题,但我根本找不到任何帮助。 当验证规则未通过时,我的 Controller 正在使用转义字符串而不是对象的 j
如果使用@Cacheable 作为返回值'ResponseEntity',我会遇到序列化错误。 Caused by: org.springframework.data.redis.serializer
我使用 ResponseEntity 为 GET“api/v1/name”和 POST“api/v1/name”请求返回响应。 我的目标是不返回空值的响应,例如在 POST "api/v1/name"
我创建了一个通用异常 DTO,它也扩展了 RuntimeException。通过这种方式,可以在应用程序中使用它,也可以将其用作 DTO。问题是当我将 DTO 应用于 ResponseEntity 构
public void etisLogAround(ProceedingJoinPoint joinPoint, EtisLog etisLog) throws Throwable {
我是一名优秀的程序员,十分优秀!