Skip to content

Instantly share code, notes, and snippets.

@sonOfRa
Created January 13, 2020 10:40
Show Gist options
  • Save sonOfRa/bec8cf39cb7530c1ea4b05bc3294c8b6 to your computer and use it in GitHub Desktop.
Save sonOfRa/bec8cf39cb7530c1ea4b05bc3294c8b6 to your computer and use it in GitHub Desktop.
your.prefix.name=I'm a name
your.prefix.expiration=1000
@Configuration
@ConfigurationProperties(prefix = "your.prefix")
public class ConfigThings {
private String name;
private int expiration;
// Getters, setters
}
@Controller
public class FooController {
@Autowired
private ConfigThings configThings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment