Open vphilipnyc opened 1 year ago
Can you please provide an example? It's likely that any created before the Spring Boot 3 release will use javax.
I mostly created these for demos and screencasts. I'd be happy to update ones that I'm using in future demos.
Just looking at the readme
For example
@lombok.Data
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@javax.persistence.Entity
class $name$ {
public $name$(java.lang.String name) {
this.name = name;
}
@javax.persistence.Id
@javax.persistence.GeneratedValue
private java.lang.Long id;
private java.lang.String name;
}
Shows up in the live templates