skip to Main Content

Redis – After upgrading Spring Boot from 2.5 to 3.1.2 version, package org.cache2k.integration is not found

While building the project getting below error: error: package org.cache2k.integration does not exist import org.cache2k.integration.CacheLoader; Screenshot of error Setup details under build.gradle file: targetCompatibility = '17' sourceCompatibility = '17' plugins { id 'java' id 'org.springframework.boot' version '3.1.2' apply false id…

VIEW QUESTION

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
Back To Top
Search