mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-29 10:55:48 +00:00
add print
This commit is contained in:
parent
05468bc14b
commit
9060bc4cf1
1 changed files with 5 additions and 0 deletions
|
@ -31,7 +31,12 @@ import org.springframework.context.annotation.ImportRuntimeHints;
|
|||
public class PetClinicApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
printSystem();
|
||||
SpringApplication.run(PetClinicApplication.class, args);
|
||||
}
|
||||
|
||||
private static void printSystem() {
|
||||
System.out.println("Here we go.");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue