Update WorkingWithArraysInThymeleafApplication.java

This commit is contained in:
jabyte 2018-05-10 15:58:29 +01:00 committed by GitHub
parent 012bf35ffd
commit 4e4b65c2fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -1,12 +1,12 @@
// package com.baeldung.thymeleaf;
package com.baeldung.thymeleaf;
// import org.springframework.boot.SpringApplication;
// import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
// @SpringBootApplication
// public class WorkingWithArraysInThymeleafApplication {
@SpringBootApplication
public class WorkingWithArraysInThymeleafApplication {
// public static void main(String[] args) {
// SpringApplication.run(WorkingWithArraysInThymeleafApplication.class, args);
// }
// }
public static void main(String[] args) {
SpringApplication.run(WorkingWithArraysInThymeleafApplication.class, args);
}
}