0

I'm trying to use application.properties file instead of yml. However my configurations are not picked up by spring-boot. Are the configurations diffrent for yml and .properties?

In yml

zuul:
  ignoredServices: "*"

I made it like this in application.properties

zuul.ignoredServices=*
Fahim Farook
  • 1,482
  • 2
  • 14
  • 38
  • Have you tried with single quotes? I've never had a problem with it. – spencergibb Dec 04 '15 at 21:48
  • Same as spencer. I am forced right now to use properties files instead of yml and have not had any issues. "*" or '*' should work if * does not – code Dec 04 '15 at 22:38

1 Answers1

0

reverse, the "zuul.ignoredServices=*" worked fine for me.

Ming
  • 171
  • 1
  • 3