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 'io.spring.dependency-management' version '1.1.2' apply false
}
2
Answers
org.cache2k.integration was deprecated. see here https://cache2k.org/2/0.0.Final.html. use org.cache2k.io instead
Can use cache2k-spring, for example: