Skip to Content
Full Stack Development with JHipster
book

Full Stack Development with JHipster

by Deepu K Sasidharan, Sendil Kumar N
March 2018
Intermediate to advanced content levelIntermediate to advanced
380 pages
9h 23m
English
Packt Publishing
Content preview from Full Stack Development with JHipster

Angular services for the entity

The ProductService is an Angular service that interacts with our REST endpoints and created in product.service.ts:

@Injectable()export class ProductService {    private resourceUrl = SERVER_API_URL + 'api/products';    constructor(private http: HttpClient) { }    ...    query(req?: any): Observable<HttpResponse<Product[]>> {        const options = createRequestOption(req);        return this.http.get<Product[]>(            this.resourceUrl,             { params: options, observe: 'response' }        )        .map((res: HttpResponse<Product[]>) => this.convertArrayResponse(res));    }    ...}

As you can see, the service has a constructor with dependencies injected following a similar pattern as our server-side code. There are methods mapping all the CRUD actions to the backend ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Full Stack Development with JHipster - Second Edition

Full Stack Development with JHipster - Second Edition

Deepu K Sasidharan, Sendil Kumar Nellaiyapen
Jasmine Cookbook

Jasmine Cookbook

Munish Kumar

Publisher Resources

ISBN: 9781788476317Supplemental Content