.
This commit is contained in:
parent
3fe08e92a8
commit
94b1ac4822
8
pom.xml
8
pom.xml
@ -6,18 +6,18 @@
|
|||||||
|
|
||||||
<groupId>dev.zhub</groupId>
|
<groupId>dev.zhub</groupId>
|
||||||
<artifactId>zhub-client-spring</artifactId>
|
<artifactId>zhub-client-spring</artifactId>
|
||||||
<version>17.0.0423.dev</version>
|
<version>8.0.0424.dev</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
<version>3.1.10</version>
|
<version>2.5.4</version>
|
||||||
<relativePath/> <!-- lookup parent from repository -->
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -7,19 +7,19 @@ import java.util.Map;
|
|||||||
|
|
||||||
public interface IType {
|
public interface IType {
|
||||||
|
|
||||||
TypeToken<String> STRING = new TypeToken<>() {
|
TypeToken<String> STRING = new TypeToken<String>() {
|
||||||
};
|
};
|
||||||
|
|
||||||
TypeToken<Short> SHORT = new TypeToken<>() {
|
TypeToken<Short> SHORT = new TypeToken<Short>() {
|
||||||
};
|
};
|
||||||
TypeToken<Integer> INT = new TypeToken<>() {
|
TypeToken<Integer> INT = new TypeToken<Integer>() {
|
||||||
};
|
};
|
||||||
TypeToken<Long> LONG = new TypeToken<>() {
|
TypeToken<Long> LONG = new TypeToken<Long>() {
|
||||||
};
|
};
|
||||||
TypeToken<Double> DOUBLE = new TypeToken<>() {
|
TypeToken<Double> DOUBLE = new TypeToken<Double>() {
|
||||||
};
|
};
|
||||||
|
|
||||||
TypeToken<Map<String, String>> MAP = new TypeToken<>() {
|
TypeToken<Map<String, String>> MAP = new TypeToken<Map<String, String>>() {
|
||||||
};
|
};
|
||||||
|
|
||||||
TypeToken<List<Map<String, String>>> LMAP = new TypeToken<List<Map<String, String>>>() {
|
TypeToken<List<Map<String, String>>> LMAP = new TypeToken<List<Map<String, String>>>() {
|
||||||
|
@ -2,12 +2,12 @@ package dev.zhub.client;
|
|||||||
|
|
||||||
import com.google.gson.reflect.TypeToken;
|
import com.google.gson.reflect.TypeToken;
|
||||||
import dev.zhub.*;
|
import dev.zhub.*;
|
||||||
import jakarta.annotation.PostConstruct;
|
import dev.zhub.timer.Timers;
|
||||||
import lombok.Setter;
|
import lombok.Setter;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
import dev.zhub.timer.Timers;
|
|
||||||
|
|
||||||
|
import javax.annotation.PostConstruct;
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
|
Loading…
Reference in New Issue
Block a user