属性文件在Spring Boot中使用

时间:2017-09-20 08:48:32

标签: java spring spring-mvc spring-boot

application.properties文件中这些属性的用途是什么 我们什么时候使用它们?

spring.mvc.throw-exception-if-no-handler-found=true
spring.sources.add-mappings=false

1 个答案:

答案 0 :(得分:0)

根据这些资源

  1. disable the static resource handling in Spring Boot

  2. Spring Boot application-properties

  3. 你可以使用

    spring.resources.add-mappings=false
    

    用于禁用类路径/ JAR /文件系统资源(如css或图像文件)的默认处理,以防您想限制对它们的访问并创建自己的映射

    spring.mvc.throw-exception-if-no-handler-found=true
    

    如果您希望在处理NoHandlerFoundException时找不到handler的情况下抛出类型request的异常(并且可能会抓住它并采取相同的相应操作)。