Error: Could not find or load main class com.eventoapp.EventoappApplication

0

I'm having this error, I can not run my application.

  

Error: Could not find or load main class com.eventoapp.EventoappApplication

My class

package com.eventoapp;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class EventoappApplication {

    public static void main(String[] args) {
        SpringApplication.run(EventoappApplication.class, args);
    }
}
    
asked by anonymous 19.09.2017 / 21:00

0 answers