skip to Main Content

Mysql – Java Springboot isn't working as expected. What's wrong with my code

We have just started with springboot. I did all of the steps my professor has shown, but it does not seem to be creating a database. **Application** spring.datasource.url = jdbc:mysql://localhost:3306/dbLastNameDemo spring.datasource.username = root spring.datasource.password = password spring.jpa.database-platform = org.hibernate.dialect.MySQL5InnoDBDialect spring.jpa.hibernate.ddl-auto…

VIEW QUESTION

Reactjs – Application fails to start when I add a custom method in Repository interface

My application runs fine when it doesn't include any custom method in Repository. The moment I add a custom repo method in repo interface, it gives exceptions and application fails to start. package com.library.repo; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query;…

VIEW QUESTION

Json – how to pull movie id(tmdb api) , @PathVarible

I started my first spring boot project. That's why it's not enough. Already looked for stack overflows and googling. I'd appreciate your help. **tmdb api Query For Details ** 'https://api.themoviedb.org/3/movie/343611?api_key=87bad1aa...~' movie_id : 343611 Controller import com.example.joyit.service.MovieSearchService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j;…

VIEW QUESTION
Back To Top
Search