jeesite project deployment operational problems

Two problems encountered when deploying jeesite project:
1.jeesite the Common-: 4.1.0-SNAPSHOT and other jar package failed to load
problem causes: because the local maven repository configuration of the central warehouse Ali cloud leads not jar Bag load.
Problem Solution:
Open files are installed maven settings.xml file conf files in a directory folder under the following block of code to find the
Here Insert Picture Description
address of the warehouse will be configured to delete the item back download jar package
after package download 2.jar successful project file with application.java start error
solution: open the file in the web directory pom find the following code block

在这里插入代码片
`<!-- Spring Boot -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-tomcat</artifactId>
			<scope>provided</scope>
		</dependency>
将其中的provided 修改为compile则项目可以正常启动。

Released six original articles · won praise 7 · views 1103

Guess you like

Origin blog.csdn.net/weixin_43814408/article/details/87259365