EntityTableHint - plugin detail
Add lowercase @Table annotations on entities
Plugin owner: |
cghislai |
Website: |
|
Added: |
2016-03-09 |
License: |
MIT |
Category: |
Code Generation |
Downloaded: |
1,101 times |
Rating: |
|
Plugin Log |
Show log
2016-03-09 05:55:59 | jkovalsky | Plugin published | 2016-03-09 05:34:36 | cghislai | Plugin saved with .nbm/zip file; id: 63351 |
|
|
Versions available
|
Download size: 0.01 MB
|
Last Update: 2016-03-09
|
What's new in this version
Verifications for NetBeans versions
Plugin is not subject to any verification
Introduction
This plugins provides a single Hint for @Entity-annotated classes:
Add @Table annotation
This will append a @Table annotation with the name attributes set to the lowercased class name.
For instance:
@Entity
public class MyEntityClass implements Serializable {
Get transformed to
@Entity
@Table(name = "my_entity_class")
public class MyEntityClass implements Serializable {
|
[ You have to be logged in to be able to comment. ]
User Comments
There are no comments yet.