springboot如何直接读取webapp下页面?

公司改用springboot的时候,将页面相关的文件都放在了src/main/webapp下,我直接通过main方式启动的时候,无法读取到src/mian/webapp下文件,但是通过spring-boot:run方法又可以读取到src/mian/webapp下文件,这是什么原因?

要如何才能让main方式可以调用到src/mian/webapp下文件,因为我现在用spring-boot:run方法启动的时候无法debug

 

 

 


   
      src/main/webapp
      
      META-INF/resources
      
         **/**
      
   
   
      src/main/resources
      true
      
         **/*
      
   

  

转载于:https://www.cnblogs.com/songanwei/p/9335629.html

你可能感兴趣的:(springboot如何直接读取webapp下页面?)