SpringBoot - configuration

di il
1 risposte

SpringBoot - configuration

Salve a tutti,

Mi da questo errore:

Multiple markers at this line
- The method run(Object, String...) from the type SpringApplication refers to the missing type
ConfigurableApplicationContext
- The type org.springframework.context.ConfigurableApplicationContext cannot be resolved. It is indirectly
referenced from required .class files

Poi mi da un altro errore:
The requested profile "pom.xml" could not be activated because it does not exist

Non capisco ho fatto le ricerche è mi dà sempre errore nel main.

package com.example.demo;

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

@SpringBootApplication
public class ProvaApplication {

	public static void main(String[] args) {
		SpringApplication.run(ProvaApplication.class, args);
	}
}

1 Risposte

  • Re: SpringBoot - configuration

    Ho fatto di tutto, ma quando creo su eclipse, spring starter project, quando lo configuro e seleziono web, dopodichè mi esco questi errori che vedete nel commento precedente.

    Come mai?
    Dice che non trova il fil pom.
    ho fatto i seguenti passaggi:
    1) clean maven
    2) maven build per cancellare i repository danneggiati
    non so più che cosa devo fare
Devi accedere o registrarti per scrivere nel forum
1 risposte