Introduction

Let’s say you have an advanced backend system, for which you wish to develop a modern Angular frontend, or, perhaps it’s not your backend, but something public like Facebook, and you want to develop a site using some of its exposed APIs. Of course, you want to do this with minimal effort … how do you pull this off? Enter Swagger!

This article will walk you through the key steps required to connect an existing Java EE backend, which already exposes RESTful services, to an Angular frontend. Once you understand how these dots are connected, you can follow similar steps for other backends, or public APIs too.

Would you rather learn how to do this visually instead of reading this article? If yes, jump to the Webinar we presented on this subject last week.

Broad Strokes

To connect our existing backend to an Angular frontend, we’re going to perform the following steps:

  1. Generate a Swagger/OpenAPI specification file for your backend
  2. Generate frontend code from the Swagger specification file
  3. Create an Angular App to use the generated code

Generating a Swagger Specification File for Your Java EE Backend

Note that we’re starting with an application that already exposes RESTful web services through JAX-RS. If your application does not already do this, you must first create services that expose data that the frontend needs to function – this is beyond the scope of this article.

You can follow along with this project or your own.

  1. Add Swagger dependencies
    To our project, we’re adding `swagger-core`, `swagger-jaxrs` and `swagger-annotations` which are libraries that cover the annotations we’re going to add to our code, interaction with JAX-RS, and generation of the Swagger specification file. If you’re using Maven, the dependencies look like this:

    <dependency>
      <groupId>io.swagger</groupId>
      <artifactId>swagger-core</artifactId>
      <version>1.5.13</version>
    </dependency>
    <dependency>
      <groupId>io.swagger</groupId>
      <artifactId>swagger-jaxrs</artifactId>
      <version>1.5.13</version>
    </dependency>
    <dependency>
      <groupId>io.swagger</groupId>
      <artifactId>swagger-annotations</artifactId>
      <version>1.5.13</version>
    </dependency>
  2. Add @Api annotations to resources
    What we want to do here is identify our REST resources which we wish to expose further with Swagger, and annotate them with the @Api (io.swagger.annotations.Api) annotation. See the following screenshot for an example:
    We must do this for all resources that we want exposed. Note: There are several other annotations that will allow you to document and customize the specification file generated, among other things. Please, see this document for more details.
  3. Add specification generation code
    In the root of your application (or any other appropriate place) add the following code to generate the Swagger specification file. Note that the URLs I’ve used are specific to our demo application.

    BeanConfig beanConfig = new BeanConfig();
    beanConfig.setVersion("2.0.0");
    beanConfig.setSchemes(new String[]{"http"});
    beanConfig.setHost("localhost:8080");
    beanConfig.setBasePath("/applicationPetstore/rest");
    beanConfig.setResourcePackage("org.agoncal.application.petstore.rest");
    beanConfig.setPrettyPrint(true);
    beanConfig.setScan();
  4. When this application is deployed, navigate over to http://localhost:8080/applicationPetstore/rest/swagger.json to get your Swagger specification file. It should look somewhat like this:

Generating Frontend Code from the Swagger Specification File

In this part we’ll take the swagger specification file generated in the previous section, and generate some code that we can use in our Angular frontend. We’ll use the Swagger Code Generator to generate this code.

  1. Use this link to download version 2.2.3 of this tool: http://central.maven.org/maven2/io/swagger/swagger-codegen-cli/2.2.3/swagger-codegen-cli-2.2.3.jar
    Do check if a more recent version is available before downloading.
  2. From the command line, execute the following command:
     java -jar swagger-codegen-cli-2.2.3.jar generate -i  http://localhost:8080/applicationPetstore/rest/swagger.json -l typescript-angular2

    Note that we are pointing to the same Swagger specification we obtained in the last section. The output of this command is a number of TypeScript files, including models and API code. The models in the model folder are a representation of your RESTful resources in TypeScript. The API code in the api folder is responsible for actually making the calls to the exposed endpoints, and dealing with the responses returned.

Create an Angular App to Use the Generated Code

With Angular IDE or MyEclipse, creating an Angular application is easy, even if you don’t have Node, NPM or the Angular CLI installed – we’ll download everything for you as part of the project creation process.

Following are a few highlights, covering Angular project creation, as well as key pieces of code. The code below can be found in this project.

Observe the following snippets of code which use the generated Category model as well as the CategoryApi class to display a list of categories. Of course, this code is specific to the Swagger specification file that we fed into the Swagger code generator.

category-list.component.ts

export class CategoryListComponent implements OnInit {

  public categories: Category[] = [];

  constructor(private categoryApi: CategoryApi) {
  }

  ngOnInit() {
    this.categoryApi.listAll().subscribe(
      value => {
        setTimeout(() => this.categories.push(...value), 2000);
      },
      error => console.error(JSON.stringify(error)),
      () => console.log('done')
    );
  }
 }

category-list.component.html

<div class="panel panel-success">
  <div class="panel-heading">
     Categories
  </div>
  <div class="panel-body">
    <strong *ngIf="categories.length == 0">Loading...</strong>
    <ul *ngIf="categories.length > 0" class="nav nav-pills nav-stacked">
      <li *ngFor="let category of categories" routerLinkActive="active">
        <a [routerLink]="'category/' + category.id">{{category.name}}</a>
      </li>
    </ul>
   </div>
 </div>

More on Swagger?

For more info on what Swagger can do for you, check out our “Using APIs with Swagger” webinar which covers these topics in more detail.

Slides for this Webinar can be found below:
[slideshare id=80731170&doc=genuitecusingapiswithswagger-slideshare-171012093048]

Resources

Projects referenced:
Backend Java EE 7 Project: Petstore Java EE 7
Frontend Angular Project: Petstore Frontend

IDEs used:
Angular IDE: Optimized for developers to make the most of Angular, advanced validation, content assist, debugging and more.
MyEclipse: A single Java IDE that includes the best tools for the full stack developer to create a dynamic frontend along with a powerful backend.