forked from jhipster/generator-jhipster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
USAGE
executable file
·21 lines (19 loc) · 1023 Bytes
/
USAGE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description:
Creates a new JHipster entity: JPA entity, Spring MVC REST controller, AngularJS controller, service and view, all wired up together
Example:
yo jhipster:entity Foo
This will create:
.jhipster.Foo.json
src/main/java/package/domain/Foo.java
src/main/java/package/repository/FooRepository.java
src/main/java/package/web/rest/FooResource.java
src/main/resources/config/liquibase/changelog/20150128232313_added_entity_Foo.xml
src/main/webapp/scripts/app/entities/foo/foos.html
src/main/webapp/scripts/app/entities/foo/foo-detail.html
src/main/webapp/scripts/app/entities/foo/foo.js
src/main/webapp/scripts/app/entities/foo/foo.controller.js
src/main/webapp/scripts/app/entities/foo/foo-detail.controller.js
src/main/webapp/scripts/components/entities/foo/foo.service.js
src/test/java/package/web/rest/FooResourceTest.java
src/main/webapp/i18n/en/foo.json
src/main/webapp/i18n/fr/foo.json