- Spring 5.0 By Example
- Claudio Eduardo de Oliveira
- 38字
- 2025-02-25 18:46:33
Tag
This class represents a tag in our system. There isn't necessarily any repository for it because it will be persisted together with our News entity:
package springfive.cms.domain.models;
import lombok.Data;
@Data
public class Tag {
String value;
}