我有一个Spring Boot应用程序:
Spring Boot 2.3.2.RELEASE
sentry-spring 1.7.30
sentry-logging 1.7.30
我想在application.yml中设置dsn:
sentry:
dsn: ${DSN}
但不起作用。 仅当我创建具有相同属性(硬编码)的sentry.properties时,它才有效。 我的问题是yml config怎么了?
答案 0 :(得分:0)
我可能认为您已经用 ""
编写了 DSN。如果您想在 application.yml
中使用它,请不要使用 ""
。
sentry:
dsn: "https://examplePublicKey@o0.ingest.sentry.io/0" //wrong
sentry:
dsn: "https://examplePublicKey@o0.ingest.sentry.io/0" //ok