Skip to content

Commit

Permalink
fix : redis 에러 수정 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjKim1229 committed May 12, 2024
1 parent dd6725d commit a01e9db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
//import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.redis.repository.configuration.EnableRedisRepositories;

@EnableJpaAuditing
@EnableFeignClients
@EnableRedisRepositories
@SpringBootApplication
public class ClubberServerApplication {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package com.clubber.ClubberServer.domain.user.domain;


import jakarta.persistence.Id;

import lombok.Builder;
import lombok.Getter;
import org.springframework.data.annotation.Id;
import org.springframework.data.redis.core.RedisHash;
import org.springframework.data.redis.core.TimeToLive;
import org.springframework.data.redis.core.index.Indexed;
Expand Down

0 comments on commit a01e9db

Please sign in to comment.