March 2018
Intermediate to advanced
380 pages
9h 23m
English
In the Gateway application, the entire frontend (including the entities in microservices) will be generated. Since JHipster produces proxy-based microservices, all the frontend code will live in the Gateway application:

ProductOrder.Java will remove the Invoice as a foreign key and then use the long value that we passed in here:
/*** A Product Owner*/...public class ProductOrder implements Serializable {...@Column(name = "invoice_id")private Long invoiceId;...}So, the application is generated completely. Now, it is time to run it.
Fire up three consoles (since we need to run three applications). If we have the applications ...