Demo: Send Status-Code in InterceptorHandler
[demos/spring-boot] / src / main / java / de / juplo / demo / DemoApplication.java
1 package de.juplo.demo;
2
3 import org.springframework.beans.factory.annotation.Value;
4 import org.springframework.boot.SpringApplication;
5 import org.springframework.boot.autoconfigure.SpringBootApplication;
6 import org.springframework.context.annotation.Bean;
7
8
9 @SpringBootApplication
10 public class DemoApplication
11 {
12         @Value("${build.version}")
13         String projectVersion;
14
15
16         @Bean
17         public BackendVersionInterceptor backendVersionInterceptor()
18         {
19                 return new BackendVersionInterceptor(projectVersion);
20         }
21
22
23         public static void main(String[] args)
24         {
25                 SpringApplication.run(DemoApplication.class, args);
26         }
27
28 }