Skip to content
Snippets Groups Projects
Commit e50583f5 authored by boly38's avatar boly38
Browse files

Update BaseEntity.java

This fix the following error :

   "setAttribute: Non-serializable attribute owner"

In the following context :

  - hsql database configuration (updating data-access.properties only)

  - mvn clean install bees:run (cloudbees local run)
parent 6942397e
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ import javax.persistence.MappedSuperclass; ...@@ -27,7 +27,7 @@ import javax.persistence.MappedSuperclass;
* @author Juergen Hoeller * @author Juergen Hoeller
*/ */
@MappedSuperclass @MappedSuperclass
public class BaseEntity { public class BaseEntity implements Serializable {
@Id @Id
@GeneratedValue(strategy = GenerationType.IDENTITY) @GeneratedValue(strategy = GenerationType.IDENTITY)
protected Integer id; protected Integer id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment