Spring application使用@ 使用的问题:'@' that cannot start any token. (Do not use @ for indentation)

错误信息

在application配置文件中使用@出现异常:

Exception in thread "main" while scanning for the next token
found character '@' that cannot start any token. (Do not use @ for indentation)
 in 'reader', line 4, column 11:
        name: @project.artifactId@

代码:

info:
  app:
    name: @project.artifactId@
    encoding: @project.build.sourceEncoding@
    java:
      source: @java.version@
      target: @java.version@

解决办法

  1. 用单引号或双引号将@@之间的内容包起来
info:
  app:
    name: "@project.artifactId@"
    encoding: '@project.build.sourceEncoding@'
    java:
      source: '@java.version@'
      target: '@java.version@'
  1. 或者添加maven依赖

使用Maven的资源过滤(resource filter)自动暴露来自Maven项目的属性,如果使用spring-boot-starter-parent,你可以通过@…@占位符引用Maven项目的属性,例如:
[email protected]@
[email protected]@
注 如果启用addResources标识,spring-boot:run可以将src/main/resources直接添加到classpath(出于热加载目的),这就绕过了资源过滤和本特性。你可以使用exec:java目标进行替代,或自定义该插件的配置,具体查看插件使用页面

<resources>
    <resource>
        <directory>src/main/resourcesdirectory>
        <filtering>truefiltering>
    resource>
resources>

<plugins>
	<plugin>
	    <groupId>org.apache.maven.pluginsgroupId>
	    <artifactId>maven-resources-pluginartifactId>
	    <version>2.7version>
	    <configuration>
	        <delimiters>
	            <delimiter>@delimiter>
	        delimiters>
	        <useDefaultDelimiters>falseuseDefaultDelimiters>
	    configuration>
	plugin>
<plugins/>

Spring application使用@ 使用的问题:'@' that cannot start any token. (Do not use @ for indentation)_第1张图片注 如果你在配置中使用标准的Spring占位符(比如${foo})且没有将useDefaultDelimiters属性设置为false,那构建时这些属性将被暴露出去

参考

1. application使用@符合问题:’@’ that cannot start any token. (Do not use @ for indentation)
2. SpringBoot中出现’@’ that cannot start any token. (Do not use @ for indentation)…

你可能感兴趣的:(Spring)