[精讚] [會員登入]
505

how to make wicket web application runs under docker enviorment with correct encoding

在docker環境下,wicket web application 編碼錯誤的問題

分享此文連結 //n.sfs.tw/15896

分享連結 how to make wicket web application runs under docker enviorment with correct encoding@外行中的外行
(文章歡迎轉載,務必尊重版權註明連結來源)
2022-07-11 13:16:30 最後編修
2022-07-11 13:16:12 By jung
 

由於專案建置的程式使用wicket framework產生前後端頁面,

在正式環境的LINUX系統沒有問題

但放到docker測試時就出現wicket 建立的 web component 無法正確識別UTF-8編碼

導致前端頁面呈現中文時會出現亂碼

解法其實很簡單,但網路上卻沒太多中文的提示

以下做個紀錄

在wicket 專案中繼承WebApplication的程式中

找到初始化的地方

@Override
    public void init() {
        super.init();

下面加上這一行

getMarkupSettings().setDefaultMarkupEncoding("UTF-8");

 

就完成了

END

你可能感興趣的文章

使用letsEncrypt替換docker容器內的nginx https憑證 using cerbot for nginx on oracle linux 9

在IDEA從JDK8升級到JDK11遇到的奇怪問題 在IDEA遇到的JAVA11函式庫引入問題

testing gitlab and jenkins CI/CD on docker-1 在docker架設gitlab, jenkins 測試CI/CD pipeline第一章

在intellij IDEA解決檔案內容顯示為UTF-8字碼而不是中文的問題 how to show correct language content of file, instead of utf-8 encoded charactors

更新java版本後一定要做的事情 how to deal with PKIX path building failed issue after upgrade java sdk version in IDE

how to stop wildfly keeping standalone server log how to stop wildfly keeping standalone server log

我有話要說

>>

限制:留言最高字數1000字。 限制:未登入訪客,每則留言間隔需超過10分鐘,每日最多5則留言。

訪客留言

[無留言]

隨機好文

縣市IDP新增API功能 修改IDP程式增加API介面

zfs on ubuntu 20.04 how to destroy zfs pool while error message said pool is busy

determine strings that include numbers and spaces differ from Highest and Lowest numbers inside strings that includes spaces

logrotate執行權限問題 logrotate will failed to execute if selinux policy not setup correctly

specific instructions to create a maven archetype from local existing project. Generate an archetype from the project