Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
@SpringBootApplication @EnableJpaRepositories public class StudentsTableApplication implements CommandLineRunner { private Logger logger = LoggerFactory.getLogger(this.getClass()); public static void main(String[] args) { SpringApplication.run(StudentsTableApplication.class, args); } @Autowired private StudentRepository studentRepository; @Override public void run(String... args) throws Exception { } }
spring.datasource.url=jdbc:postgresql://localhost:5432/studentdb?useSSL=false&serverTimezone=UTC&useLegacyDatetimeCode=false spring.datasource.username=postgres spring.datasource.password=admin logging.level.org.hibernate.SQL=DEBUG