Last active
March 22, 2019 13:04
-
-
Save rinaldodev/e2dd83444eebd03de8783905f8889783 to your computer and use it in GitHub Desktop.
@transient com JPA: 3 coisas que você não deve fazer! (1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.persistence.Column; | |
import javax.persistence.Entity; | |
import javax.persistence.Id; | |
@Entity | |
public class Usuario { | |
@Id | |
private Long id; | |
@Column | |
private String primeiroNome; | |
@Column | |
private String sobrenome; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment