Modify the jvm encoding problem when Tomcat is running

Modify the jvm encoding problem when Tomcat is running

question:

Recently, garbled data appeared when deploying the project. After checking, the project used the UTF-8 encoding format, and the data was also used. However, when it was transmitted to the other party through the calling interface, it was garbled.

Since it is deployed in a Windows environment, the default encoding of Windows is GBK, which leads to the problem of inconsistent encoding during JVM runtime, and it is also easy to modify.

Solution:

If you use UTF-8 encoding in Linux environment, you do not need to modify it, because Linux defaults to UTF-8

The war package is deployed in Tomcat

Modify jvm encoding

Linux Environment

Configuration in catalina.sh

JAVA_OPTS="$JAVA_OPTS -Dfile.encoding=utf-8"

Since the default encoding format in Windows environment is GBK, you need to change the encoding format when Tomcat is running.

Windows Environment

Configuration in catalina.bat

set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8

If it is a jar package deployment, you only need to add the jvm parameter to the startup command.

JAR package deployment

Add jvm parameters to the startup command

java -Dfile.encoding=UTF-8 -jar xxx.jar

Summarize

The above is the editor's introduction to modifying the JVM encoding problem when running Tomcat. I hope it will be helpful to everyone!

You may also be interested in:
  • Detailed explanation of the difference between Java memory model and JVM runtime data area
  • Analysis of the JVM runtime data area principle
  • JVM: In-depth understanding of late (runtime) optimization
  • Detailed explanation of Java Virtual Machine (JVM) runtime
  • Detailed explanation of JVM runtime memory usage monitoring
  • JVM core tutorial: detailed explanation of the entire process of JVM operation and class loading
  • How to set JVM running parameters in IntelliJ IDEA
  • Detailed explanation of the principle of data area division at JVM runtime

<<:  Implementing calculator functions with WeChat applet

>>:  Example analysis of the page splitting principle of MySQL clustered index

Recommend

How to Apply for Web Design Jobs

<br />Hello everyone! It’s my honor to chat ...

Two types of tab applications in web design

Nowadays, tabs are widely used in web design, but...

Summary of common MySQL table design errors

Table of contents Mistake 1: Too many columns of ...

Detailed explanation of bash command usage

On Linux, bash is adopted as the standard, which ...

Example tutorial on using the sum function in MySQL

Introduction Today I will share the use of the su...

How to use custom images in Html to display checkboxes

If you need to use an image to implement the use ...

MySQL statement arrangement and summary introduction

SQL (Structured Query Language) statement, that i...

Vue Element-ui implements tree control node adding icon detailed explanation

Table of contents 1. Rendering 2. Bind data and a...

JS implements a detailed plan for the smooth version of the progress bar

The progress bar is not smooth I believe that mos...

Solution to installing vim in docker container

Table of contents The beginning of the story Inst...

View the frequently used SQL statements in MySQL (detailed explanation)

#mysql -uroot -p Enter password mysql> show fu...

How to configure Nginx's anti-hotlinking

Experimental environment • A minimally installed ...

How to delete special character file names or directories in Linux

Delete a file by its inode number First use ls -i...

Linux system command notes

This article describes the linux system commands....

Enterprise-level installation tutorial using LAMP source code

Table of contents LAMP architecture 1.Lamp Introd...