Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
20241022 wyz PostgresDemoApplication update
  • Loading branch information
pactera-testing-wangyuzheng authored and pactera-testing-wangyuzheng committed Oct 22, 2024
commit c1597539c2a379fe05a7c0f4fc81af06ce8c2d6c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.example.postgresdemo;

import org.apache.tomcat.jni.Time;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
Expand All @@ -8,6 +9,8 @@
@EnableJpaAuditing
public class PostgresDemoApplication {
public static void main(String[] args) {
System.out.println("START:" + Time.now());
SpringApplication.run(PostgresDemoApplication.class, args);
System.out.println("End:" + Time.now());
}
}