Skip to content

Commit 2ed9400

Browse files
committed
Doing work
1 parent 63a8625 commit 2ed9400

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package example.service.hello;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
6+
@SpringBootApplication
7+
public class HelloServiceApplication {
8+
9+
public static void main(String... args) {
10+
SpringApplication.run(HelloServiceApplication.class, args);
11+
}
12+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Properties
2+
spring.rsocket.server.port=7000
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<include resource="org/springframework/boot/logging/logback/base.xml"/>
4+
5+
<logger name="example.service.hello" level="INFO" additivity="false">
6+
<appender-ref ref="CONSOLE"/>
7+
<appender-ref ref="FILE"/>
8+
</logger>
9+
10+
</configuration>

0 commit comments

Comments
 (0)