Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

You may want to change to jakarta instead of javax #1

Open
vphilipnyc opened this issue Jan 31, 2023 · 3 comments
Open

You may want to change to jakarta instead of javax #1

vphilipnyc opened this issue Jan 31, 2023 · 3 comments

Comments

@vphilipnyc
Copy link

Shows up in the live templates

@mraible
Copy link
Owner

mraible commented Jan 31, 2023

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.

@vphilipnyc
Copy link
Author

Just looking at the readme

@vphilipnyc
Copy link
Author

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;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants