@Entity
@HyperResource // No path specified
public class Product {
//...
}➡️ Resulting API Path: /Product
⚠️ It takes the class name as the endpoint
@Entity
@HyperResource(path = "/inventory/items")
public class Product {
//...
}➡️ Resulting API Path: /inventory/items