Add application file and update entity in model
This commit is contained in:
parent
f959e7a273
commit
605568587e
|
@ -5,14 +5,18 @@ import lombok.Data;
|
|||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Setter
|
||||
public class Customer implements Serializable {
|
||||
|
||||
@Id
|
||||
private String id;
|
||||
|
||||
private String name;
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
package com.baeldung.caching.twolevelcache;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cache.annotation.EnableCaching;
|
||||
|
||||
@SpringBootApplication
|
||||
@EnableCaching
|
||||
public class TwoLevelCacheApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(TwoLevelCacheApplication.class, args);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue