Problem analysis of using idea to build springboot initializer server

Problem analysis of using idea to build springboot initializer server

Problem Description

Recently, when I was building a springboot project, I found that idea could not create a new project when connected to the company's network cable. The browser could not access https://start.spring.io, but my mobile hotspot could access it normally. I guess it was blocked. So for convenience, I plan to build the service on my own server with reference to online tutorials. Here my server is Centos7.6

Construction process

First download the project and execute

git clone https://github.com/spring-io/initializr.git

If you don't have git, you need to install it first

sudo yum install git

In addition, the project depends on Maven, so you must first ensure that the Maven environment is installed on your computer. If there is no Maven, execute

wget http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
tar -zxvf apache-maven-3.5.4-bin.tar.gz
sudo update-alternatives --install /usr/bin/mvn mvn /root/apache-maven-3.5.4/bin/mvn 1000

Then go to the downloaded folder

cd initializr

Execute the build command. This may be slow. Anyway, it took me a long time.

./mvnw clean install

Then go to the initializr-service folder and execute

cd initializr-service
../mvnw package

After the build is successful, a target folder will be generated in the initializr-service folder. Enter the target folder. Here I specify the port number as 8082. Of course, you can modify it as needed.

cd target
nohup java -jar initializr-service.jar --server.port=8082

Finally, select custom when initializing springboot, and then enter your http://ip:port .

Summarize

This is the end of this article about using idea to build a springboot initializer server. For more related idea initializer server content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • SpringBoot uploads files to the server directory at the same level as the jar package
  • Several ways to start springboot on the server (summary)
  • How to add https server in springboot
  • Springboot+TCP listening server construction process diagram

<<:  How MySQL Select Statement is Executed

>>:  Detailed explanation of basic syntax and data types of JavaScript

Recommend

Vue realizes cascading selection of provinces, cities and districts

Recently, I need to implement a cascading selecti...

JavaScript implements fireworks effects with sound effects

It took me half an hour to write the code, and th...

Differentiate between null value and empty character ('') in MySQL

In daily development, database addition, deletion...

Use of Linux relative and absolute paths

01. Overview Absolute paths and relative paths ar...

Two ways to clear table data in MySQL and their differences

There are two ways to delete data in MySQL: Trunc...

How are spaces represented in HTML (what do they mean)?

In web development, you often encounter characters...

Detailed steps to install Docker mongoDB 4.2.1 and collect springboot logs

1: Install mongodb in docker Step 1: Install mong...

Typora code block color matching and title serial number implementation code

Effect: The title has its own serial number, the ...

Using MySQL database with Python 3.4 under Windows 7

The detailed process of using MySQL database with...

Nginx rewrite regular matching rewriting method example

Nginx's rewrite function supports regular mat...

WeChat applet realizes the effect of swiping left to delete list items

This article shares the specific code for WeChat ...

A universal nginx interface to implement reverse proxy configuration

1. What is a proxy server? Proxy server, when the...

canvas.toDataURL image/png error handling method recommendation

Problem background: There is a requirement to tak...

Analysis of common usage examples of MySQL process functions

This article uses examples to illustrate the comm...