init: 尝试通过androidx.compose.remote进行远程桌面配置
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.ttstd.composeremote.server;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class RemoteApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(RemoteApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
9
ComposeRemoteServer/src/main/resources/application.yml
Normal file
9
ComposeRemoteServer/src/main/resources/application.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
server:
|
||||
port: 8000
|
||||
|
||||
spring:
|
||||
application:
|
||||
name: ComposeRemoteServer
|
||||
threads:
|
||||
virtual:
|
||||
enabled: true # 开启虚拟线程
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ttstd.composeremote.server;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class RemoteApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user