springboot中classpath:是什么路径
时间: 2024-06-01 11:08:32 浏览: 117
spark-submit cluster模式时driver-class-path支持hdfs路径
5星 · 资源好评率100%
在Spring Boot中,classpath:是指类路径,即编译后的class文件所在的路径。这个路径是相对于项目的根目录的。在Spring Boot应用程序中,可以使用classpath:前缀来引用类路径中的资源,比如配置文件、静态资源等。例如,classpath:application.properties指的是类路径下的application.properties文件。
阅读全文