码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2018-10-12 21:21:18      阅读:1320      评论:0      收藏:0      [点我收藏+]

标签:双引号   main   build   cep   exce   cte   代码   source   异常   

在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@

解决方案,用单引号或双引号将@@之间的内容包起来:

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

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

标签:双引号   main   build   cep   exce   cte   代码   source   异常   

原文地址:https://www.cnblogs.com/ifindu-san/p/9780270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!