Open
Description
2024-10-15T19:40:08.435+09:00 INFO 11388 --- [ restartedMain] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.avengers.yoribogo.recipe.repository.RecommendedMenuRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository
Spring Data JPA - Could not safely identify store assignment for repository candidate interface com.avengers.yoribogo.notification.weeklypopularrecipe.repository.WeeklyPopularRecipeMongoRepository; If you want this repository to be a JPA repository, consider annotating your entities with one of these annotations: jakarta.persistence.Entity, jakarta.persistence.MappedSuperclass (preferred), or consider extending one of the following types with your repository: org.springframework.data.jpa.repository.JpaRepository
Spring Data MongoDB - Could not safely identify store assignment for repository candidate interface com.avengers.yoribogo.recipe.repository.RecommendedMenuRepository; If you want this repository to be a MongoDB repository, consider annotating your entities with one of these annotations: org.springframework.data.mongodb.core.mapping.Document (preferred), or consider extending one of the following types with your repository: org.springframework.data.mongodb.repository.MongoRepository
There was a problem with the method I created to test the like function.
This error is a warning message that did not occur before adding the Insert feature for Mongodb to one transaction.
In addition, the functional test also passed as postman.
However, after creating an event processing feature to insert data into Mongodb, such a warning statement occurs.
Even though there is a warning, the api still works fine.
But I don't think that problem has been fundamentally solved.
Entities and Document Annotations are appropriately specified in the class
I don't think this is enough.
Please let me know the cause and solution of this problem
below : my Project File
yoribogo.zip