Problema com Spring Tool Suite 4 para executar projeto

Estou com problema com a execução do Spring Tool Suite 4, está ocorrendo erro:

@SpringBootApplication
public class PesquisamercadoApplication {

	public static void main(String[] args) {
		Aparece erro (X) SpringApplication.run(PesquisamercadoApplication.class, args);
	}
}
Multiple markers at this line
	- The type org.springframework.context.ConfigurableApplicationContext cannot be resolved. It is indirectly referenced from required .
	 class files
	- The method run(Class<?>, String...) from the type SpringApplication refers to the missing type ConfigurableApplicationContext

O Spring Tool Suite carrega o jdk próprio, e eu tenho no Eclipse já configurado, e está propagado para todo o projeto.

Parece que as dependências não foram corretamente baixadas. Se o projeto for maven, tente abrir um terminal na pasta do projeto e execute: ./mvnw clean package, e poste aqui o resultado. Se for gradle, execute um ./gradlew build.