Oi!
Altere nas configurações do projeto para o Java 8, que é a versão utilizada no projeto do curso.
Boa tarde eu troquei a versão e continua dando erro , rodei ele pelo ForumApplicationKt e pelo org.junit.jupiter.api.Test; e mesmo assim ainda persistem em erros. pequei o pom.xml da ultima e intalei e msm assim ainda da erro
Estranho. Rode um build no projeto (Menu superior Build -> Build Project) e também faça um refresh no Maven (aba Maven no canto superior direito)
ja tentei , ate msm se nao estou enganado a versão que pequei no projeto do git que é da aula está no Java 11 .. tentei exportar o projeto para mandar , mais como não conheço muito a ide parece que só exporta uma classe .. sabe me dizer por onde ir .. que acredito que Ficaria mais fácil enviando o projeto ..
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2023-10-06 15:47:15.085 ERROR 2560 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :
APPLICATION FAILED TO START
Description:
Flyway failed to initialize: none of the following migration scripts locations could be found:
- classpath:db/migration
Action:
Review the locations above or check your Flyway configuration
Process finished with exit code 0
mesmo adicionando as classes no resources/db/migreiton
create table curso( id bigint not null auto_increment, nome varchar(50)not null , categoria varchar(50) not null, primary key(id) ); insert into curso values (1, 'kotlin', 'Progamação');
create table usuario( id bigint not null auto_increment, nome varchar(50) not null, sexo varchar(10) not null, email varchar(20) not null, telefone int(12) not null, primary key(id) ); insert into usuario values (1, 'leo','Masculino', 'leo@gmail.com','12-88889955');
create table topico( id bigint not null auto_increment, titulo varchar (40) not null, mensagem varchar(3000) not null, data_criacao datetime not null, status varchar(20) not null, curso_id bigint not null, autor_id bigint not null, primary key(id), foreign key (curso_id) references curso(id), foreign key (autor_id) references usuario(id) );
create table respostas( id bigint not null auto_increment, mensagem varchar(3000) not null, data_criacao datetime not null, topico_id bigint not null, autor_id bigint not null, solucao int(1) not null, primary key(id), foreign key (topico_id) references topico(id), foreign key (autor_id) references usuario(id) );
Agora o projeto rodou, mas está dando erro nas migrations.
Verifica se no seu projeto tem a pasta correta: src/main/resources/db/migration/