getClass().getResourceAsStream() in maven project

前端 未结 3 803
轻奢々
轻奢々 2021-02-18 20:58

The pom.xml of my maven project looks as follows:



        
3条回答
  •  不要未来只要你来
    2021-02-18 21:53

    Under make sure to have the as below This will explicitly tell maven to fetch these files and include it in the build.

       
         
            
                ${basedir}/src/main/resources
                
                    **/*
                
            
         
         ...
      
    

提交回复
热议问题