This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Service | |
public class GreetingService { | |
private static final Logger LOGGER = LoggerFactory.getLogger(GreetingService.class); | |
@Value("${greeting.name:World}") | |
private String name; | |
public String greet() { | |
if (LOGGER.isDebugEnabled()) { | |
LOGGER.debug("Greeting {}", name); | |
} | |
return "Hello " + name; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/altfatterz/configuration-with-spring-boot | |
cd configuration-with-spring-boot | |
mvn clean package | |
java -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war |
Now let's see what configuration options we have.
We can configure the name property using a command line argument.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war --greeting.name=Zoltan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -Dgreeting.name="Heisenberg" -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GREETING_NAME="Dexter" java -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war |
The Spring Boot Actuator module's /env endpoint can be very useful in analysing used configuration.
We could also set it via a JNDI attribute. In order to demonstrate it, I will use Wildfly (formerly known as JBoss AS). Just drop the generated war file into your
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./jboss-cli.sh -c "/subsystem=naming/binding=java\:\/greeting.name:add(binding-type=simple,value=Backbase)" | |
{"outcome" => "success"} | |
$ ./jboss-cli.sh -c "reload" |
Another option is to set it via an external property file. By default it uses the application.properties, however you can easily override it via spring.config.name as shown below.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war --spring.config.name=backbase |
Lastly I would like to show you how Spring Boot can help in setting up logging configuration. Spring Boot already provides a default base configuration for each logging implementation that you can include if you just want to set levels. The base configuration is set up with console output and file output (rotating, 10 Mb file size) which is usually enough.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<include resource="org/springframework/boot/logging/logback/base.xml"/> | |
<logger name="com.backbase" level="INFO"/> | |
</configuration> |
What you would however mostly do is to setup an externalised logging configuration. For logging I recommend logback. It can automatically reload logging configuration upon modification. The external logging configuration you can set via the logging.config property.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -jar target/configuration-with-spring-boot-0.0.1-SNAPSHOT.war --logging.config=backbase-logback.xml |

Hope you see the great flexibility regarding configuration when using Spring Boot. There are other goodies like using YAML instead of properties files, which is a very convenient format for specifying hierarchical configuration data.
7 comments:
Nice post. Can you refer me to a introductory article/video to spring boot? I would like to understand what is it and what problems does it solve?
Here you have it http://projects.spring.io/spring-boot/
May I (humbly) recommend https://www.youtube.com/watch?v=eCos5VTtZoI as an introductory tutorial for Spring Boot? It's a 1hr talk. I hope this helps..
Great! Thanks Josh.
Ada sejarawan lainnya yang yakini kalau ada seseorang negarawan china yang membuat permainan itu th. 1120 M bernama Yang Chu
asikqq
dewaqq
sumoqq
interqq
pionpoker
bandar ceme terbaik
hobiqq
paito warna
bocoran sgp
data hk
As reported by Stanford Medical, It's really the ONLY reason this country's women get to live 10 years longer and weigh 19 KG less than we do.
(By the way, it really has NOTHING to do with genetics or some secret diet and absolutely EVERYTHING around "HOW" they are eating.)
BTW, I said "HOW", not "WHAT"...
Tap on this link to see if this little quiz can help you decipher your true weight loss possibility
Your style is very unique in comparison to other people I’ve read stuff from. Thanks for posting when you’ve got the opportunity, Guess I will just bookmark this site.
CCSU BA 2nd Year Exam Result 2021
Post a Comment