/sparrow-server-spring-boot-starter

sparrow-server-spring-boot-starter

Primary LanguageJavaApache License 2.0Apache-2.0

sparrow-server-spring-boot-starter

Sparrow Server Spring Book Edition

中文

Support Function:

Server Cluster:

The Cluster Is Determined By The Client And Can Connect To A Specified Number Of Servers

Sparrow Server Dedicated Client

Sparrow Server Dedicated Client,Usually, All Requests Come From Here

Quick Start

<!--Adding dependencies to pom. XML-->
<dependency>
    <artifactId>sparrow-server-spring-boot-starter</artifactId>
    <groupId>com.github.thierrysquirrel</groupId>
    <version>2.2.1.4-RELEASE</version>
</dependency>

configuration file

## application.properties
spring.datasource.url=#H2 DataBase Url
spring.datasource.username=#H2 DataBase username
spring.datasource.password=#H2 DataBase password
sparrow.server.url=127.0.0.1:6060 # This Is Required For Service Startup

Start Sparrow Server

@SpringBootApplication
public class SparrowServerApplication {
   public static void main(String[] args) {
   	SpringApplication.run(DemoApplication.class, args);
   }

}

Russian flag