Spring Boot HelloWorld not working on IntelliJ IDEA – Ubuntu
I am trying to run a Hello World application with Spring Boot on IntelliJ IDEA. I have the following code: package com.example.springbootexample; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SpringBootExampleApplication { public static void main(String[] args) { SpringApplication.run(SpringBootExampleApplication.class, args); }…