Add EbeanAgentAutoConfiguration for Spring Boot

This commit is contained in:
Karsten Sperling
2016-12-16 23:38:36 +13:00
parent 2f793c29dc
commit 6eb1947a6e
7 changed files with 163 additions and 29 deletions
+11
View File
@@ -0,0 +1,11 @@
package org.unenhanced;
import javax.persistence.Entity;
import javax.persistence.Id;
// Not in org.example, i.e. not enhanced at build time
@Entity
public class Wotsit {
@Id
public String name;
}