init
This commit is contained in:
parent
f1a2ce1395
commit
7ff2206df9
|
@ -23,6 +23,10 @@
|
|||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
|
|
@ -3,13 +3,9 @@ package win.novice.li;
|
|||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
import java.security.InvalidAlgorithmParameterException;
|
||||
import java.security.cert.PKIXBuilderParameters;
|
||||
import java.util.HashSet;
|
||||
|
||||
@SpringBootApplication
|
||||
public class JetbraServerApplication {
|
||||
public static void main(String[] args) throws InvalidAlgorithmParameterException {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(JetbraServerApplication.class,args);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
<html>
|
||||
<p>hello world</p>
|
||||
</html>
|
Loading…
Reference in New Issue