这是入门的第三天了,从简单的hello spring开始,已经慢慢接近web的样子。接下来当然是读取简单的对象属性了。

于是按照网上各位大神教的,简单写了个对象book,如上一篇(B),其他配置不需要做任何改动。

package com.example.bean;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component; @Component
@ConfigurationProperties(prefix = "book")
@PropertySource("classpath:book.properties") public class Book { private String name; private String author; private String price; public Book () {}; public Book(String name,String author,String price) {
this.name = name;
this.author = author;
this.price = price;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String getAuthor() {
return author;
} public void setAuthor(String author) {
this.author = author;
} public String getPrice() {
return price;
} public void setPrice(String price) {
this.price = price;
}; }

访问控制器controller如下:

@Controller
public class BookController { @Autowired
private Book book; @RequestMapping("/book")
@ResponseBody
public String readBook() {
return "emmmm..... The BookName is "
+book.getName()
+";and Book Author is "
+book.getAuthor()
+";and Book price is "
+book.getPrice(); }
}

book的属性值在配置文件里面给出,我用了自定义配置文件,没有在application.properties里面配置,那样的话这个文件太臃肿了。

当然了文件的编码肯定是选的UTF-8不要怀疑,

然而遗憾的是,当我在浏览器输入http://localhost:9090/wow/book访问时,竟然乱码了!!!哦shit

然后就是各种找解决方案,顺便也了解到了原因,就是eclipse默认.properties文件的编码是ISO-8859-1,那么知道了编码的问题,按照以前的思路来解决乱码就比较顺畅了,

无非是优先指定服务器编码,这就是方案一,要么指定浏览器编码,然而因为不是jsp访问所以这个行不通,要么文件编码指定UTF-8,然而无效。

网上提供的解决方案也不外乎这几种:

方案一:在application里面指定tomcat的编码:

#设置中文字符的显示方式

#server.tomcat.uri-encoding=UTF-8
#spring.http.encoding.charset=UTF-8
#spring.http.encoding.enabled=true
#spring.http.encoding.force=true
#spring.messages.encoding=UTF-8

并无卵用!第一行直接就报错了!我的JDK1.8,spring boot2.0,可能是版本问题,反正就是报错不能用。

方案二:各种通过文件编码指定的,不可用。我eclipse默认指定所有文件编码是UTF-8,这个文件已经指定,并没有作用。

方案三:编写读取properties文件的类来控制输出流,特么的这个类在哪里调用?

方案四:嗯,eclipse需要一个读取properties文件的插件,对的就是插件,下载一个插件据说就能UTF-8输出了,然而我并不想因为一个文件就去下载一个插件。所以这种方案没有试。

方案五:据说yml可以输出中文不乱码???那还不简单,换个格式不就完了?

naive!

首先,将book.properties换成book.yml,各种链接给出的方案都是在默认配置文件里写简直了。。。。。。

然后根据指点,使用@value将属性注入,各大网站给出的注入位置几乎都在get set 方法上面,然而,

找不到文件啊衰。。。。依然乱码啊(′д` )…彡…彡

乱码:

package com.example.bean;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component; @Component
@ConfigurationProperties(value = "book")
@PropertySource("classpath:book.yml")
public class BookYml {//仍然是乱码 private String name; private String author; private String price; public BookYml () {}; public BookYml(String name,String author,String price) {
this.name = name;
this.author = author;
this.price = price;
} @Value("${book.name}")
public String getName() {
return name;
} public void setName(String name) {
this.name = name;
}
@Value("${book.author}")
public String getAuthor() {
return author;
} public void setAuthor(String author) {
this.author = author;
}
@Value("${book.price}")
public String getPrice() {
return price;
} public void setPrice(String price) {
this.price = price;
}; }

嗯,既然仍然是乱码,说明yml并没有什么特权。有人说yml也是解析成properties文件运行的,嗯,这个解释我服。

难道真的只能下载插件了?NONONO不要轻言放弃。更换关键字继续搜索,终于找到了一篇:

终极大法来了:

方案六:

package com.example.bean;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component; @Component
@PropertySource(value = "classpath:book.yml", ignoreResourceNotFound = true,encoding = "UTF-8" )
@ConfigurationProperties(prefix = "book")public class Book { @Value("${name}")
private String name;
@Value("${author}")
private String author;
@Value("${price}")
private String price; public Book () {}; public Book(String name,String author,String price) {
this.name = name;
this.author = author;
this.price = price;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String getAuthor() {
return author;
} public void setAuthor(String author) {
this.author = author;
} public String getPrice() {
return price;
} public void setPrice(String price) {
this.price = price;
}; }

完美!

首先要在属性声明上引入注解@value,并不是在get set上面。其次,在读取数据源的@PropertySource里面指定文件编码方式。

这样访问就能正常显示中文了。

同理,properties文件也可以这样做,只要@PropertySource(value = "classpath:book.properties", ignoreResourceNotFound = true,encoding = "UTF-8" )就行了,根本不需要什么插件!

另,这个配置文件的路径也可以自定义而不需要在@PropertySource(value = "classpath:“)里面给出。

感谢 https://ask.csdn.net/questions/681857?sort=votes_count

(C)spring boot读取自定义配置文件时乱码解决办法的更多相关文章

  1. spring boot读取自定义配置文件时乱码解决办法

    @PropertySource(value = "classpath:book.yml", ignoreResourceNotFound = true,encoding = &qu ...

  2. Spring Boot读取自定义外部属性

    测试的环境:Spring Boot2 + Maven +lombok 准备需要用到的基础类: public class People { private String name; private St ...

  3. spring boot jpa 使用update 报错解决办法

    在spring boot jpa 中自定义sql,执行update操作报错解决办法: 在@Query(...)上添加 @Modifying@Transactional注解

  4. spring boot中log4j冲突问题和解决办法

    Spring Boot中自带了log4j日志管理.写法应该是: private static final Logger logger = Logger.getLogger(XXX.class); 而不 ...

  5. Spring boot读取application.properties中文乱码

    解决方案 在IDEA环境下: File -> Settings -> Editor -> File Encodings 将Properties Files (*.properties ...

  6. spring mvc 的@PathVariable对应中文乱码解决办法

    参考:https://www.aliyun.com/jiaocheng/800577.html

  7. spring boot 项目从配置文件中读取maven 的pom.xml 文件标签的内容。

    需求: 将pom.xml 文件中的版本号读取到配置文件并打印到日志中. 第一步: 在pom.xml 中添加以下标签. 第二步: 将version 标签的值读取到配置文件中 这里使用 @@  而不是  ...

  8. Spring Boot的properties配置文件读取

    我在自己写点东西玩的时候需要读配置文件,又不想引包,于是打算扣点Spring Boot读取配置文件的代码出来,当然只是读配置文件没必要这么麻烦,不过反正闲着也是闲着,扣着玩了.具体启动过程以前的博客写 ...

  9. Springboot读取自定义配置文件的几种方法

    一.读取核心配置文件 核心配置文件是指在resources根目录下的application.properties或application.yml配置文件,读取这两个配置文件的方法有两种,都比较简单. ...

随机推荐

  1. 青石B2C商城

    平台: Windows 类型: 虚拟机镜像 软件包: azure commercial ecbluestone ecommerce ecommerce solution 服务优惠价: 按服务商许可协议 ...

  2. SQLServer:执行计划

    http://www.cnblogs.com/kissdodog/category/532309.html

  3. JavaScript基础:字符串转换函数——String()和toString()

    1..toString()可以将所有的的数据都转换为字符串,但是要排除null 和 undefined 例如将false转为字符串类型 <script>   var str = false ...

  4. Win10技巧:使用“照片”应用剪辑视频、添加特效

    Win10内置了很多实用的应用,你不仅可以通过“Win键+G”快速录制电脑屏幕,如软件操作.游戏界面等,你还可以利用“照片”应用来对视频进行快速的剪辑,把录制前后多余的内容去除,同时你也可以对游戏中的 ...

  5. 如何计算并测量ABAP及Java代码的环复杂度Cyclomatic complexity

    代码的环复杂度(Cyclomatic complexity,有的地方又翻译成圈复杂度)是一种代码复杂度的衡量标准,在1976年由Thomas J. McCabe, Sr. 提出. 在软件测试的概念里, ...

  6. Aizu The Maximum Number of Customers

    http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_5_A The Maximum Number of Customers Ide ...

  7. Selenium入门18 断言

    自动化测试需对比实际结果与预期结果,给出测试结论. 1 条件判断 if ...else... 2 assert ... #coding:utf-8 #断言 from selenium import w ...

  8. DFS+BFS(POJ3083)

    题目链接:http://poj.org/problem?id=3083 解题报告:这个题目,搜最短路,没有什么问题.优先走左边,走右边,有很多说法,思路大概都相同,都是记录当前朝向,根据数学公式(i+ ...

  9. ffmpeg处理RTMP流媒体的命令大全

    最近浏览国外网站时候发现,翻译不准确的敬请谅解. 1.将文件当做直播送至live ffmpeg -re -i localFile.mp4 -c copy -f flv rtmp://server/li ...

  10. 2017.9.18 HTMl学习总结----input标签的额type

    2.1.3  HTML表单标签与表单设计 (1)表单的组成:文本框(text),密码框(password),多行文本框(Multiline text box).  单选按钮框(Single - rad ...