Skip to content

Commit

Permalink
Fix #222: serializers.yml does not override properties when it is an …
Browse files Browse the repository at this point in the history
…external file
  • Loading branch information
rmartinsanta committed Nov 23, 2024
1 parent cb273cd commit b1c3dd1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration
@Inherited
@PropertySource(value = "classpath:serializers.yml", factory = YmlPropSourceFactory.class)
@PropertySource(value = "serializers.yml", ignoreResourceNotFound = true, factory = YmlPropSourceFactory.class)
@PropertySource(value = "file:serializers.yml", ignoreResourceNotFound = true, factory = YmlPropSourceFactory.class)
public @interface SerializerSource {}

0 comments on commit b1c3dd1

Please sign in to comment.