天天看點

springboot----讀取application.properties 主配置檔案中文亂碼問題解決

文章目錄

        • 一、問題概述
            • 1、問題展示
            • 2、圖檔展示
        • 二、中文亂碼解決步驟
        • 三、總結

1、問題展示

  ① application.properties

springboot----讀取application.properties 主配置檔案中文亂碼問題解決

  ② IndexController.java

@Controller
public class IndexController {
    @Value("${user}")
    private String user;
    @Value("${password}")
    private String password;

    @RequestMapping("/say")
    public @ResponseBody
    String say() {
        return "hello,Springboot!" + user + password;
    }
}

           

2、圖檔展示

  2.1:浏覽器通路:http://localhost:8080/dev/say

springboot----讀取application.properties 主配置檔案中文亂碼問題解決

浏覽器通路後的頁面:user=南一小寶寶啊-輸出到頁面是ASCII 碼的形式,password=123456顯示正常

繼續閱讀