Data visualization: dynamic real-time large screen based on Echarts + Java SpringBoot [Java development environment construction]

Made a series of Java&Echarts large-screen cases , YYDatav's data visualization large-screen "Wonderful Case Summary" (Java SpringBoot&Echarts source code) - YYDataV's blog - CSDN Blog

The basic environment construction is unified here.

1. Java development environment configuration

 

 

 Then GENERATE, download the package.

2. json library configuration

Using alibaba's json library, add configuration to the pom.xml file:

<dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>fastjson</artifactId>
   <version>1.2.51</version>
</dependency>

3. Code structure description 

a. Static path

 b. Java directory

  c. Port configuration

4. Start command 

5. View in browser

Enter the URL in the browser to view the large screen (the port is the server.port value in application.properties)
http://localhost:80xx 

Guess you like

Origin blog.csdn.net/lildkdkdkjf/article/details/123667775