Jira's Simplified Chinese characters (using the BIG5 cause)
After the installation of Jira Chinese after the discovery of a part of the Chinese display garbled, after inspection: it should be UTF-8 encoded but displayed as BIG5,BIG5 does not support Simplified Chinese!
After entering the Jira database to find the Propertyentry table, thepropertyentry table is a list of properties that are used by Jira system. found that one of the jira.properties is called Webwork.i18n.encoding, Jira's MVC framework is made with webwork, so this should be a variable for webwork internationalization, so find another table propertystring, this table is used to Record the variable value of the string, find the value of the corresponding ID, and find that it is Big5, change it to UTF-8.
SQL statement:update propertystring set Propertyvalue=utf8 where id= ' 10000 ';p ropertystring table name; propertyvalue field name;
The problem of garbled characters after constructing Jira Han Dynasty