Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created April 29, 2020 02:26
Show Gist options
  • Save CheolhoJeon/f7fbaa0858fe6c1ce4ec2fdc950c2a71 to your computer and use it in GitHub Desktop.
Save CheolhoJeon/f7fbaa0858fe6c1ce4ec2fdc950c2a71 to your computer and use it in GitHub Desktop.
package spring;
import org.springframework.beans.factory.annotation.Value;
public class Info {
@Value("${info.version}")
private String version;
public String getVersion() {
return version;
}
public void setVersion(final String version) {
this.version = version;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment