com.github.txxs.CommonUtilsApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-utils Show documentation
Show all versions of common-utils Show documentation
commmon utils for java, since 1.7
package com.github.txxs;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CommonUtilsApplication {
public static void main(String[] args) {
SpringApplication.run(CommonUtilsApplication.class, args);
}
}