Actually, this is just a warning. which can even be disabled with @SuppressWarnings ("serial")
import ...
.
.
.
@SuppressWarnings("serial")
public class AplicacaoEntity implements Serializable {
private Long id;
private String descricao;
.
.
.
or adding the line to the class:
private static end long serialVersionUID = 1L; as the example below:
import ...
.
.
.
public class AplicacaoEntity implements Serializable {
private static final long serialVersionUID = 1L;
private Long id;
private String descricao;
.
.
.
Important:
If you are building a JSF project, remember that every session-scoped bean is required to implement serializable;
I hope I have helped;