Skip to content

Instantly share code, notes, and snippets.

View tory-kk's full-sized avatar

Viktoriia Kozina-Kravchenko tory-kk

View GitHub Profile
@tory-kk
tory-kk / DemoApplication.java
Created December 22, 2023 17:20
Spring Boot 2 + Spring Framework 5.3 500 response
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);