springBoot项目启动类启动无法访问
springBoot项目启动类启动无法访问。
网上也查了一些资料,我这里总结。下不来虚的,也不废话。
解决办法:
1、若是maven项目,则找到右边Maven Projects --->Plugins--->run(利用maven启动)则可以加载到webapp资源
2、上面方法治标不治本。在项目的pom文件中添加<bulid>标签标注路径即可,pom.xml后部分代码如下:
刷新maven加载,重启项目。若还是无法访问,重新导入项目
<dependencies>
xxxxxxxxxxxx
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
<finalName>robot</finalName>
<resources>
<resource>
<directory>src/main/webapp</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
</project>
想要在服务器发布打成jar包。发现正常启动,无法访问jsp资源 看下片博客