Coder Social home page Coder Social logo

mrin9 / angular-springboot-rest-jwt Goto Github PK

View Code? Open in Web Editor NEW
754.0 90.0 495.0 13.44 MB

Springboot, Angular and JWT security - Example Project based on Northwind Order Processing

License: MIT License

Java 0.79% HTML 0.33% TypeScript 0.53% CSS 0.17% JavaScript 98.18%
springboot angular2 angular java spring-security frontend swagger openapi jwt northwind

angular-springboot-rest-jwt's Introduction

Backers on Open Collective Sponsors on Open Collective Build Status

Angular and SpringBoot both have way too much of magic, if you are one who like to be in controll of their code, then check > out my project on pure Java 11 (With Modules), Jersey and Vue.JS for UI WebApp with Java 11, Jersey and VueJS

Angular 5+ Frontent with SpringBoot (Java) Backend

Application to demonstrate various parts of a service oriented RESTfull application.

Heroku Hosted

Allow couple of minutes to let the instance start

Technology Stack

Component Technology
Frontend Angular 5
Backend (REST) SpringBoot (Java)
Security Token Based (Spring Security and JWT )
REST Documentation Swagger UI / Springfox and ReDoc
REST Spec Open API Standard
In Memory DB H2
Persistence JPA (Using Spring Data)
Client Build Tools angular-cli, Webpack, npm
Server Build Tools Maven(Java) or Gradle

Folder Structure

PROJECT_FOLDER
│  README.md
│  pom.xml           
│  build.gradle
└──[src]      
│  └──[main]      
│     └──[java]      
│     └──[resources]
│        │  application.properties #contains springboot cofigurations
│        │  schema.sql  # Contains DB Script to create tables that executes during the App Startup          
│        │  data.sql    # Contains DB Script to Insert data that executes during the App Startup (after schema.sql)
│        └──[public]    # keep all html,css etc, resources that needs to be exposed to user without security
│
└──[target]              #Java build files, auto-created after running java build: mvn install
│  └──[classes]
│     └──[public]
│     └──[webui]         #webui folder is created by (maven/gradle) which copies webui/dist folder #the application.properties file list webui as a resource folder that means files can be accesses http://localhost/<files_inside_webui> 
│
└──[webui]
   │  package.json     
   │  angular-cli.json   #ng build configurations)
   └──[node_modules]
   └──[src]              #frontend source files
   └──[dist]             #frontend build files, auto-created after running angular build: ng -build

Prerequisites

Ensure you have this installed before proceeding further

  • Java 8
  • Maven 3.3.9+ or Gradle 3.3+
  • Node 6.0 or above,
  • npm 5 or above,
  • Angular-cli 1.6.3

About

This is an RESTfull implementation of an order processing app based on Northwind database schema from Microsoft. The goal of the project is to

  • Highlight techniques of making and securing a REST full app using SpringBoot
  • How to consume an RESTfull service and make an HTML5 based Single Page App using Angular 4+

Features of the Project

  • Backend

    • Token Based Security (using Spring security)
    • API documentation and Live Try-out links with Swagger
    • In Memory DB with H2
    • Using JPA and JDBC template to talk to relational database
    • How to request and respond for paginated data
  • Frontend

    • Organizing Components, Services, Directives, Pages etc in an Angular App
    • How to chain RxJS Observables (by making sequntial AJAX request- its different that how you do with promises)
    • Techniques to Lazy load Data (Infinite Scroll)
    • Techniques to load large data set in a data-table but still keeping DOM footprint less
    • Routing and guarding pages that needs authentication
    • Basic visulaization
  • Build

    • How to build all in one app that includes (database, sample data, RESTfull API, Auto generated API Docs, frontend and security)
    • Portable app, Ideal for dockers, cloud hosting.

In Memory DB (H2)

I have included an in-memory database for the application. Database schema and sample data for the app is created everytime the app starts, and gets destroyed after the app stops, so the changes made to to the database are persistent only as long as the app is running
Creation of database schema and data are done using sql scripts that Springs runs automatically. To modify the database schema or the data you can modify schema.sql and data.sql which can be found at /src/main/resources

Spring security

Security is enabled by default, to disable, you must comment this line in src/main/java/com/config/SecurityConfig.java
When security is enabled, none of the REST API will be accessesble directly.

To test security access http://localhost:9119/version API and you should get a forbidden/Access denied error. In order to access these secured API you must first obtain a token. Tokens can be obtained by passing a valid userid/password

userid and password are stored in H2 database. To add/remove users, modify the data.sql couple of valid users and their passwords are demo\demo and admin\admin

To get a token call POST /session API with a valid userid and password. for example you may you can use the folliwing curl command to get a token

curl -X POST --header 'Content-Type: application/json' -d '{ "username":"demo", "password":"demo" }' 'http://localhost:9119/session'

the above curl command will return you a token, which should be in the format of xxx.xxx.xxx. This is a JSON web token format. You can decode and validate this token at jwt.io wesite. Just paste the token there and decode the information. to validate the token you should provide the secret key which is mrin that i am using in this app.
after receiving this token you must provide the token in the request-header of every API request. For instance try the GET /version api using the below curl command (replace xxx.xxx.xxx with the token that you received in above command) and you should be able to access the API.

curl -X GET --header 'Accept: application/json' --header 'Authorization: xxx.xxx.xxx' 'http://localhost:9119/version'

Build Frontend (optional step)

Code for frontend is allready compiled and saved under the webui/dist when building the backend app (using maven) it will pickup the code from webui/dist. However if you modified the frontend code and want your changes to get reflected then you must build the frontend

# Navigate to PROJECT_FOLDER/webui (should contain package.json )
npm install
# build the project (this will put the files under dist folder)
ng build --prod --aot=true

Build Backend (SpringBoot Java)

# Maven Build : Navigate to the root folder where pom.xml is present 
mvn clean install

#OR

# Gradle Build : Navigate to the root folder where build.gradle is present 
gradle build

Start the API and WebUI server

# Start the server (9119)
# port and other configurations for API servere is in [./src/main/resources/application.properties](/src/main/resources/application.properties) file

# If you build with maven jar location will be 
java -jar ./target/app-1.0.0.jar

# If you build with gradle jar location will be 
java -jar ./build/libs/app-1.0.0.jar

Accessing Application

Cpmponent URL Credentials
Frontend http://localhost:9119 demo/demo
H2 Database http://localhost:9119/h2-console Driver:org.h2.Driver
JDBC URL:jdbc:h2:mem:demo
User Name:sa
Swagger (API Ref) http://localhost:9119/swagger-ui.html
Redoc (API Ref) http://localhost:9119/redoc/index.html
Swagger Spec http://localhost:9119/api-docs

To get an authentication token

curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"username": "demo", "password": "demo" }' 'http://localhost:9119/session'

or POST the username and password to http://localhost:9119/session

after you get the authentication token you must provide this in the header for all the protected urls

curl -X GET --header 'Accept: application/json' --header 'Authorization: [replace this with token ]' 'http://localhost:9119/version'

To get an authentication token

Screenshots

Login

Dashboard

Dashboard - Order Stats

Dashboard

Dashboard - Product Stats

Dashboard

Orders

Dashboard

Orders Details

Dashboard

Customers

Dashboard

API Docs - With Live Tryout

Dashboard

API Docs - For redability

Dashboard

Database Schema

ER Diagram

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

angular-springboot-rest-jwt's People

Contributors

monkeywithacupcake avatar mrin9 avatar sgrillon14 avatar vaibhav-b avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

angular-springboot-rest-jwt's Issues

Build Failure

Hello their, I faced this error when building the app:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:09 min
[INFO] Finished at: 2020-04-09T00:10:03+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project app: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project app: Fatal error compiling
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke (Method.java:567)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
Caused by: org.apache.maven.plugin.MojoExecutionException: Fatal error compiling

The build isn't passing with both Maven or Gradle will you take a look at this exception?

Possible root-cause:
An illegal reflective access operation has occurred
WARNING: Illegal reflective access by lombok.javac.apt.LombokProcessor to field com.sun.tools.javac.processing.JavacProcessingEnvironment.discoveredProcs

Buttons for CRUD operations from UI

Hi. First of let me appreciate your work as it is truly amazing work which you guys have done.

This is not an issue but kinda feature I would like to add and know how I can add. Can we have buttons to add, remove , update and delete buttons for each section on UI.

Secondly I tried adding employee from postman but got the error on insert as id cannot be null. Below is the request and response

{
"address1": "string",
"address2": "string",
"avatar": "string",
"city": "string",
"country": "string",
"department": "string",
"email": "string",
"firstName": "Swapnil",
"id": 300,
"jobTitle": "string",
"lastName": "string",
"managerId": 0,
"phone": "string",
"postalCode": "string",
"state": "string"
}

{
"operationStatus": "ERROR",
"operationMessage": "NULL not allowed for column "ID"; SQL statement:\ninsert into employees (id, address1, address2, avatar, city, country, department, email, first_name, job_title, last_name, manager_id, phone, postal_code, state) values (null, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [23502-193]"
}

Can you please help me out for this as I am learning to do SAP with Spring boot and angular 4.

Thanks

Metadata version mismatch for module @swimlane (found version 4, expected 3)

npm install
ng build -prod --aot=false

leads to the following error:

ERROR in Error: Metadata version mismatch for module /Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@swimlane/ngx-datatable/release/index.d.ts, found version 4, expected 3, resolving symbol AppModule in /Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/src/app/app.module.ts, resolving symbol AppModule in /Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/src/app/app.module.ts
    at syntaxError (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler/bundles/compiler.umd.js:1729:34)
    at simplifyInContext (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler/bundles/compiler.umd.js:24979:23)
    at StaticReflector.simplify (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler/bundles/compiler.umd.js:24991:13)
    at StaticReflector.annotations (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler/bundles/compiler.umd.js:24418:41)
    at _getNgModuleMetadata (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler-cli/src/ngtools_impl.js:138:31)
    at _extractLazyRoutesFromStaticModule (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler-cli/src/ngtools_impl.js:109:26)
    at Object.listLazyRoutesOfModule (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler-cli/src/ngtools_impl.js:53:22)
    at Function.NgTools_InternalApi_NG_2.listLazyRoutes (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@angular/compiler-cli/src/ngtools_api.js:91:39)
    at AotPlugin._getLazyRoutesFromNgtools (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@ngtools/webpack/src/plugin.js:241:66)
    at _donePromise.Promise.resolve.then.then.then.then.then (/Users/Thomas/Desktop/Angular-SpringBoot-REST-JWT-master/webui/node_modules/@ngtools/webpack/src/plugin.js:495:24)

is there a way of adding more than just two roles ?

Hello,
It's actually not an issue but more of a question, for example I have an authenticated user than can post articles and comments and I want with Spring Security that the user has only access to his articles and his comments ? thank you

importing project in eclipse

refer to the closed issue -> "Lombock annotations for setters and getters are throwing errors"

After installing Lombock, all but one errors are resolved. The last error remains in the pom.xml.
the error message is:
"No marketplace entries found to handle download-maven-plugin:1.3.0:wget in Eclipse. Please see Help for more information."
The error is on this tag -> "execution"

Roles and not camelCase Json return

Hello, I am experimenting on your project, thank you for sharing it.
I would like to know how the roles for users work.
You can also stop using camelcase in the json.
Thanks

dev environment for front end

hi.

i was using augury for angular 2 to degub the frontend.
augury does not support angular 4. can u help me setting up the dev env for frontend.

thanks

Remember me functionality

First of all thank you for the example.
I was wondering if you can suggest a way to implement Remember Me functionality using JWT ?

bad redirect when bad login

When a user post a bad login/password the redirect is http://....../#/logout instead of http://....../#/login with error message.

this code never called:

errResponse => {
                  switch (errResponse.status) {
                    case 401:
                      this.errMsg = 'Username or password is incorrect';
                      break;
                    case 404:
                      this.errMsg = 'Service not found';
                      break;
                    case 408:
                      this.errMsg = 'Request Timedout';
                      break;
                    case 500:
                      this.errMsg = 'Internal Server Error';
                      break;
                    default:
                      this.errMsg = 'Server Error';
                  }
                }

use lint

You neet merge PR#15

if you use lint (npm run lint), you have this errors:

ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[8, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[10, 20]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[10, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[10, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[11, 19]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[11, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[11, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[12, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[12, 37]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[12, 59]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[13, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[16, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[16, 20]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[16, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[17, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[18, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[19, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[21, 18]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[22, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[22, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[22, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[25, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[25, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[25, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[28, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[28, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[28, 38]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[31, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[31, 79]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[31, 89]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[32, 51]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[32, 77]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[34, 9]: misplaced 'else'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[34, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[35, 51]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[35, 77]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[35, 97]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[35, 97]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[37, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[37, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-config.ts[37, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[1, 20]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[4, 26]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[6, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[7, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[8, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[9, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[10, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[11, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[12, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[13, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[14, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[15, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[18, 33]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[21, 5]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[26, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[27, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[28, 1]: Exceeds maximum line length of 140
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[28, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[28, 108]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[28, 135]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[32, 50]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[32, 77]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[33, 23]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[35, 79]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[35, 105]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[35, 132]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[36, 79]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[36, 105]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[36, 132]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[39, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[39, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[39, 95]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[39, 122]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[40, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[40, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[40, 95]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[40, 122]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[41, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[41, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[41, 95]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[41, 122]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[42, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[42, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[42, 95]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[42, 122]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[43, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[43, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[43, 95]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[43, 122]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[46, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[46, 86]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[46, 114]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[47, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[47, 86]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[47, 114]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[48, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[48, 86]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[48, 114]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[52, 52]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app-routing.module.ts[54, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[2, 25]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[4, 20]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[6, 24]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[9, 3]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[14, 3]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[26, 3]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[27, 24]: Too many spaces before 'from'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[80, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[94, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/app.module.ts[98, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[3, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[3, 12]: The selector of the component "BadgeComponent" should have prefix "app" (https://angular.io/styl
eguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[8, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[9, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[11, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[13, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/badge/badge.component.ts[15, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/legend/legend.component.ts[4, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/legend/legend.component.ts[4, 13]: The selector of the component "LegendComponent" should have prefix "app" (https://angular.io/s
tyleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/legend/legend.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/legend/legend.component.ts[19, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/legend/legend.component.ts[20, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[3, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[3, 12]: The selector of the component "LogoComponent" should have prefix "app" (https://angular.io/stylegu
ide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[4, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[7, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[8, 24]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[9, 30]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/components/logo/logo.component.ts[9, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/directives/track_scroll/track_scroll.directive.ts[1, 84]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/directives/track_scroll/track_scroll.directive.ts[4, 24]: The selector of the directive "TrackScrollDirective" should have prefix "app" (htt
ps://angular.io/styleguide#style-02-08)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/directives/track_scroll/track_scroll.directive.ts[12, 40]: == should be ===
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[2, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[17, 16]: The selector of the component "HomeComponent" should have prefix "app" (https://angular.io/styleguide#style-02-07
)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[24, 25]: Type boolean trivially inferred from a boolean literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[24, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[25, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[30, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[30, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[30, 47]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[30, 47]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[31, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[31, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[31, 47]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[31, 47]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[40, 36]: Type number trivially inferred from a number literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[40, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[40, 43]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[41, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[41, 36]: Type number trivially inferred from a number literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[41, 43]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[42, 22]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[42, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[42, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[45, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[46, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[47, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[48, 33]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[55, 13]: while statements must be braced
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[55, 63]: Unnecessary semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[55, 63]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[60, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[61, 51]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[61, 52]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[61, 83]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[61, 84]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[62, 51]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[62, 52]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[62, 83]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[62, 84]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[68, 31]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[72, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[73, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/home.component.ts[73, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[5, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[5, 12]: The selector of the component "PageNotFoundComponent" should have prefix "app" (https://angula
r.io/styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[11, 78]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[12, 17]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[12, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/404/page-not-found.component.ts[12, 39]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[1, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[1, 51]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[6, 12]: The selector of the component "CustomersComponent" should have prefix "app" (https://angular.
io/styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[7, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[15, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[16, 10]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[17, 14]: Type number trivially inferred from a number literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[17, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[17, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[18, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[18, 17]: Type number trivially inferred from a number literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[18, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[19, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[19, 22]: Type boolean trivially inferred from a boolean literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[19, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[20, 15]: Type boolean trivially inferred from a boolean literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[20, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[20, 23]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[25, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[28, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[28, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[29, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[29, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[29, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[29, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[30, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[30, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[30, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[30, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[31, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[31, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[31, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[31, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[32, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[32, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[32, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[32, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[33, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[33, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[33, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[33, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[34, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[34, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[34, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[34, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[35, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[35, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[35, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[35, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[39, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[39, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[41, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[41, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[41, 43]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[42, 17]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[43, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[43, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[44, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[45, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[45, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[46, 56]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[46, 57]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[47, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[47, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[47, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[50, 17]: misplaced 'else'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[50, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[53, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[53, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[59, 21]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[59, 30]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[60, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[60, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[60, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/customers/customers.component.ts[63, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/dashboard/dashboard.component.ts[4, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/dashboard/dashboard.component.ts[4, 12]: The selector of the component "DashboardComponent" should have prefix "app" (https://angular.
io/styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/dashboard/dashboard.component.ts[5, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[1, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[7, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[7, 15]: The selector of the component "EmployeesComponent" should have prefix "app" (https://angular.
io/styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[8, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[14, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[15, 10]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[20, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[20, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[23, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[23, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[24, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[24, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[24, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[24, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[25, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[25, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[25, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[25, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[26, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[26, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[26, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[26, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[27, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[27, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[27, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[27, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[28, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[28, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[28, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[28, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[29, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[29, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[29, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[29, 61]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[34, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/employees/employees.component.ts[34, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[6, 15]: The selector of the component "LoginComponent" should have prefix "app" (https://angular.io/styleguid
e#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[7, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[13, 12]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[13, 12]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[26, 105]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[26, 116]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[33, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[33, 45]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[39, 21]: expected a 'break' before 'case'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[41, 21]: expected a 'break' before 'case'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[43, 21]: expected a 'break' before 'default'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/login/login.component.ts[50, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/logout/logout.component.ts[5, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/logout/logout.component.ts[5, 15]: The selector of the component "LogoutComponent" should have prefix "app" (https://angular.io/styleg
uide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/logout/logout.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/logout/logout.component.ts[11, 78]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[1, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[4, 47]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[8, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[8, 12]: The selector of the component "OrderDetailsComponent" should have prefix "app" (https
://angular.io/styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[9, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[14, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[16, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[16, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[16, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[16, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[16, 49]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[17, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[17, 26]: Type boolean trivially inferred from a boolean literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[19, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[20, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[21, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[21, 15]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[21, 37]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[21, 58]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[22, 15]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[22, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[22, 37]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[22, 58]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[23, 15]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[23, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[23, 37]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[23, 58]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[24, 15]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[24, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[24, 37]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[24, 58]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[86, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[87, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[88, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[89, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[90, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[93, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[94, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[95, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[96, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[97, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[98, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[99, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[105, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[106, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[106, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[108, 45]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[110, 65]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[112, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[113, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[137, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_details/order_details.component.ts[138, 21]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[9, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[9, 12]: The selector of the component "OrderStatsComponent" should be named kebab-case and includ
e dash (https://angular.io/styleguide#style-05-02)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[10, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[16, 23]: expected nospace before colon in property-declaration
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[24, 6]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[29, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[29, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[30, 27]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[34, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[34, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[40, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[43, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[44, 50]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[47, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[48, 50]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[48, 60]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[49, 43]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/order_stats/order_stats.component.ts[51, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[1, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[8, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[8, 12]: The selector of the component "OrdersComponent" should have prefix "app" (https://angular.io/styleg
uide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[9, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[16, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[17, 10]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[19, 15]: Type boolean trivially inferred from a boolean literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[19, 15]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[19, 23]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[23, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[23, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[25, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[25, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[26, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[26, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[26, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[26, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[27, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[27, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[27, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[27, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[28, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[28, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[28, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[28, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[29, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[29, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[29, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[29, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[30, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[30, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[30, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[30, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[31, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[31, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[31, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[31, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[32, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[32, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[32, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[32, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[33, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[33, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[33, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[33, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[34, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[34, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[34, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[34, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[35, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[35, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[35, 45]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[35, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[40, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[40, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 13]: Identifier 'legendColors' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 50]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 60]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 71]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 93]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[41, 99]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[42, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[42, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[43, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[44, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[45, 68]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[45, 70]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[45, 72]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[46, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[46, 44]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[46, 59]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[46, 80]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[48, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[51, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[53, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[53, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[54, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/orders/orders.component.ts[55, 11]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[7, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[7, 12]: The selector of the component "ProductStatsComponent" should be named kebab-case and
include dash (https://angular.io/styleguide#style-05-02)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[8, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[15, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[16, 50]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[19, 5]: Implement lifecycle hook interface OnInit for method ngOnInit in class ProductStatsCo
mponent (https://angular.io/styleguide#style-09-01)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[20, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[20, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[21, 27]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[25, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[25, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[27, 41]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/product_stats/product_stats.component.ts[29, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[1, 28]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[6, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[6, 12]: The selector of the component "ProductsComponent" should have prefix "app" (https://angular.io/
styleguide#style-02-07)
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[7, 1]: space indentation expected
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[15, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[16, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[17, 10]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[22, 9]: Forbidden 'var' keyword, use 'let' or 'const' instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[22, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'var'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[24, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[24, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[25, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[25, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[25, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[25, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[26, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[26, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[26, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[26, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[27, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[27, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[27, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[27, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[28, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[28, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[28, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[28, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[29, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[29, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[29, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[29, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[30, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[30, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[30, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[30, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[31, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[31, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[31, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[31, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[32, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[32, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[32, 51]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[32, 70]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[33, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[33, 19]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[33, 42]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/pages/products/products.component.ts[33, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[4, 53]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[14, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[16, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[17, 33]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[23, 18]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[25, 13]: Identifier 'token' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[28, 38]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[33, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[33, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[33, 44]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[33, 59]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[34, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[35, 73]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[35, 100]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[36, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[36, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[37, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[38, 66]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[41, 65]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[45, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[45, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[45, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[45, 50]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[46, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[47, 97]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[48, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[48, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[49, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[52, 65]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[56, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[56, 26]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[56, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[56, 49]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[57, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[58, 96]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[59, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[59, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[60, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[63, 65]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[67, 16]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[67, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[67, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[68, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[69, 77]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[70, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[70, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[71, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/api-request.service.ts[74, 65]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[2, 53]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[5, 27]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[11, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[14, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[14, 38]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[15, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[17, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[17, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[17, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[17, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[17, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[18, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[18, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[18, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[18, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[18, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[20, 13]: Identifier 'customerListSubject' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[22, 45]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[24, 21]: Identifier 'items' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[24, 65]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[25, 25]: Identifier 'newRow' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[31, 21]: Identifier 'returnObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[31, 50]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[31, 59]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[32, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[33, 19]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/customer.service.ts[34, 1]: Exceeds maximum line length of 140
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[2, 53]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[5, 27]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[11, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[14, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[14, 38]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[15, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[16, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[18, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[18, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[18, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[18, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[18, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[19, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[19, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[19, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[19, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[19, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/employee.service.ts[20, 52]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[4, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[4, 37]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[10, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[11, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[12, 14]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[18, 24]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[18, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[18, 33]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[20, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[26, 23]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[26, 40]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[27, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[29, 13]: Identifier 'bodyData' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[29, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[30, 13]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[31, 13]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[32, 10]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[33, 13]: Identifier 'loginDataSubject' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[33, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[34, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[38, 97]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[38, 107]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[39, 23]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[41, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[42, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[43, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[44, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[45, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[46, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[47, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[47, 70]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[48, 29]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[55, 17]: misplaced 'else'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[56, 23]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[58, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[58, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[59, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[59, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[60, 25]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[60, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[60, 39]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[69, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[72, 11]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[72, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/login.service.ts[73, 35]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[2, 53]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[5, 27]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[12, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[18, 24]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[18, 38]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[19, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[20, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[22, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[22, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[22, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[22, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[22, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[23, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[23, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[23, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[23, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[23, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[24, 13]: Identifier 'orderListSubject' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[25, 42]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[27, 21]: Identifier 'returnObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[27, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[28, 25]: Identifier 'newRow' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[43, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[44, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[45, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[47, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[50, 13]: Identifier 'orderDetailSubject' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[51, 49]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[53, 21]: Identifier 'returnObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[53, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[54, 25]: Identifier 'newRow' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[61, 1]: Exceeds maximum line length of 140
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/order.service.ts[67, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[2, 53]: This import is blacklisted, import a submodule instead
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[5, 27]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[11, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[14, 23]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[14, 37]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[15, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[16, 13]: Identifier 'me' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[18, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[18, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[18, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[18, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[18, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[19, 56]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[19, 64]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[19, 81]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[19, 82]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[19, 82]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[21, 13]: Identifier 'productList' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[22, 44]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[24, 21]: Identifier 'returnObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[24, 69]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/product.service.ts[25, 25]: Identifier 'newRow' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[6, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[10, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[10, 35]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[10, 41]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[14, 30]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/api/translate.service.ts[14, 38]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/auth_guard.service.ts[4, 48]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/auth_guard.service.ts[16, 13]: Identifier 'url' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/auth_guard.service.ts[18, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/auth_guard.service.ts[29, 11]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/auth_guard.service.ts[31, 39]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[3, 31]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[4, 12]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[5, 11]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[6, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[7, 11]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[10, 36]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[11, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[12, 13]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[13, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[14, 11]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[20, 27]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[20, 27]: Type string trivially inferred from a string literal, remove type annotation
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[20, 34]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[20, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[21, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[25, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[26, 34]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[30, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[35, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[36, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[37, 12]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[38, 17]: Identifier 'userInfoString' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[38, 32]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[40, 21]: Identifier 'userObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[40, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[43, 13]: misplaced 'else'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[43, 17]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[47, 9]: misplaced 'catch'
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[52, 18]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[52, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[53, 57]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[53, 58]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[53, 62]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[53, 63]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[56, 7]: comment must start with a space
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[57, 19]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[57, 25]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[58, 13]: Identifier 'userObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[58, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[59, 20]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[59, 29]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[60, 39]: Missing semicolon
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[62, 16]: " should be '
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[65, 22]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[66, 13]: Identifier 'userObj' is never reassigned; use 'const' instead of 'let'.
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[66, 21]: missing whitespace
ERROR: C:/workspace/POC/Angular-SpringBoot-REST-JWT/webui/src/app/services/user-info.service.ts[67, 30]: missing whitespace

Warinings while npm install

When I do npm install i get the following. What should I do?
If I install the dependancies it becomes cyclic. (i.e. when I install @angular/core@^4.3.0 another module requires @angular/[email protected])

npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN @angular/[email protected] requires a peer of typescript@>=2.4.2 <2.6 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of typescript@>=2.4.2 <2.6 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/common@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/compiler@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/core@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/forms@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/platform-browser@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/platform-browser-dynamic@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/router@^4.3.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of [email protected] but none is installed. You must install peer dependencies yourself.

Not Able to Validate the user in Case of MongoDB

Hello,

I am trying to using your JWT token by writing a demo program .I am using mongodb. The problem is my DB is not getting called. Please suggest what all changes required in order to use mongodb.

Table "USER" not found; SQL statement:

I am on window 10.

I am getting this error when starting the app:

Caused by: org.h2.jdbc.JdbcSQLException: Table "USER" not found; SQL statement:
        ... 59 common frames omitted
Caused by: org.h2.jdbc.JdbcSQLException: Table "USER" not found; SQL statement:
insert into user (user_id, password, first_name, last_name, email, company, phone, address1, address2, country, postal, role, is_active, is_blocked, security_provider_id, default_customer_id, secret_question, secret_answer, enable_beta_testing, enable_renewal) values ('demo' , 'demo' , 'Mrinmoy' , 'Majumdar', '[email protected]' , 'Abshire Inc', '7-(740)701-4547', '80429 Garrison Crossing', '4967' , 'USA' , '64890', 'USER' , 1, 0, 10001, 20000, 'Diverse' , 'Yellow' , 0, 0), ('admin' , 'admin' , 'Theresa' , 'Russell' , '[email protected]' , 'Glover, Adams and Bins', '383-(779)851-3208', '30874 Graceland Terrace', '99152' , 'USA' , '51065', 'ADMIN', 1, 0, 10001, 20000, 'knowledge base', 'Mauv' , 1, 0), ('user' , 'user' , 'Virginia' , 'Reynolds', '[email protected]', 'Rippin, Osinski and Beatty', '84-(228)809-9998', '0118 Burrows Plaza', '496' , 'USA' , '94086', 'USER' , 1, 0, 10001, 20000, 'Innovative' , 'Turquoise', 1, 1), ('jowens3' , 'jowens3' , 'Judy' , 'Owens' , '[email protected]' , 'Altenwerth, Fisher and Heidenreich', '30-(772)268-8227', '98 Loeprich Way', '447', 'Greece' , null , 'USER' , 0, 0, 10001, 20001, 'capacity' , 'Fuscia' , 1, 1), ('kburns4' , 'kburns4' , 'Kelly' , 'Burns' , '[email protected]' , 'McCullough-Morar', '86-(857)185-5740', '1638 Basil Alley', '56297' , 'China' , null , 'ADMIN', 1, 0, 10000, 20002, 'user-facing' , 'Crimson', 1, 1), ('jshaw5' , 'jshaw5' , 'Julie' , 'Shaw' , '[email protected]' , 'Steuber-Okuneva', '1-(871)375-6188', '389 Myrtle Pass', '41444' , 'Canada' , null , 'ADMIN', 1, 1, 10000, 20000, 'software' , 'Green' , 0, 1), ('pgilbert6' , 'pgilbert6', 'Peter' , 'Gilbert' , '[email protected]' , 'Robel Inc', '52-(372)555-4687', '11522 Fuller Avenue', '5' , 'Mexico' , '39230', 'ADMIN', 1, 1, 10000, 20000, 'multi-state' , 'Puce' , 1, 1), ('jjacobs7' , 'jjacobs7' , 'Justin' , 'Jacobs' , '[email protected]' , 'Harris-Bashirian', '963-(199)359-2552', '95012 Hanover Street', '2377' , 'India' , null , 'USER' , 1, 0, 10000, 20002, 'motivating' , 'Crimson', 1, 0), ('kbennett8' , 'kbennett8', 'Kevin' , 'Bennett' , '[email protected]', 'Leannon Inc', '62-(892)710-5713', '459 Coleman Drive', '397' , 'Indonesia' , null , 'ADMIN', 0, 0, 10001, 20000, 'Exclusive' , 'Purple' , 1, 1), ('cmurphy9' , 'cmurphy9' , 'Chris' , 'Murphy' , '[email protected]' , 'Mosciski LLC', '64-(272)961-0086', '2 Ludington Point', '7' , 'New Zealand', null , 'ADMIN', 0, 1, 10000, 20000, 'empowering' , 'Maroon' , 0, 1) [42102-196]
        at org.h2.message.DbException.getJdbcSQLException(DbException.java:345) ~[h2-1.4.196.jar!/:na]
        at org.h2.message.DbException.get(DbException.java:179) ~[h2-1.4.196.jar!/:na]
        at org.h2.message.DbException.get(DbException.java:155) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.readTableOrView(Parser.java:5552) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.readTableOrView(Parser.java:5529) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.parseInsert(Parser.java:1062) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.parsePrepared(Parser.java:417) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.parse(Parser.java:321) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.parse(Parser.java:293) ~[h2-1.4.196.jar!/:na]
        at org.h2.command.Parser.prepareCommand(Parser.java:258) ~[h2-1.4.196.jar!/:na]
        at org.h2.engine.Session.prepareLocal(Session.java:578) ~[h2-1.4.196.jar!/:na]
        at org.h2.engine.Session.prepareCommand(Session.java:519) ~[h2-1.4.196.jar!/:na]
        at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1204) ~[h2-1.4.196.jar!/:na]
        at org.h2.jdbc.JdbcStatement.executeInternal(JdbcStatement.java:176) ~[h2-1.4.196.jar!/:na]
        at org.h2.jdbc.JdbcStatement.execute(JdbcStatement.java:164) ~[h2-1.4.196.jar!/:na]
        at org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript(ScriptUtils.java:470) ~[spring-jdbc-4.3.11.RELEASE.jar!/:4.3.11.RELEASE]
        ... 79 common frames omitted


Build backend failed

Using maven, and run the maven -X clean install, and I got following error:

[ERROR] 23680
java.lang.ArrayIndexOutOfBoundsException: 23680
	at org.codehaus.plexus.util.xml.pull.MXParser.parsePI(MXParser.java:2502)
	at org.codehaus.plexus.util.xml.pull.MXParser.parseEpilog(MXParser.java:1604)
	at org.codehaus.plexus.util.xml.pull.MXParser.nextImpl(MXParser.java:1434)
	at org.codehaus.plexus.util.xml.pull.MXParser.next(MXParser.java:1131)
	at org.apache.maven.model.io.xpp3.MavenXpp3Reader.read(MavenXpp3Reader.java:3856)
	at org.apache.maven.model.io.xpp3.MavenXpp3Reader.read(MavenXpp3Reader.java:595)
	at org.apache.maven.model.io.DefaultModelReader.read(DefaultModelReader.java:109)
	at org.apache.maven.model.io.DefaultModelReader.read(DefaultModelReader.java:82)
	at org.apache.maven.model.building.DefaultModelProcessor.read(DefaultModelProcessor.java:81)
	at org.apache.maven.model.building.DefaultModelBuilder.readModel(DefaultModelBuilder.java:535)
	at org.apache.maven.model.building.DefaultModelBuilder.build(DefaultModelBuilder.java:275)
	at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom(DefaultArtifactDescriptorReader.java:321)
	at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor(DefaultArtifactDescriptorReader.java:199)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.resolveCachedArtifactDescriptor(DefaultDependencyCollector.java:544)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.getArtifactDescriptorResult(DefaultDependencyCollector.java:528)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:418)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:372)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:360)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.doRecurse(DefaultDependencyCollector.java:513)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:467)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:372)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:360)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.doRecurse(DefaultDependencyCollector.java:513)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:467)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:372)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:360)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.doRecurse(DefaultDependencyCollector.java:513)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:467)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:372)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:360)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.doRecurse(DefaultDependencyCollector.java:513)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:467)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.processDependency(DefaultDependencyCollector.java:372)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.process(DefaultDependencyCollector.java:360)
	at org.eclipse.aether.internal.impl.DefaultDependencyCollector.collectDependencies(DefaultDependencyCollector.java:263)
	at org.eclipse.aether.internal.impl.DefaultRepositorySystem.collectDependencies(DefaultRepositorySystem.java:325)
	at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolveInternal(DefaultPluginDependenciesResolver.java:202)
	at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolve(DefaultPluginDependenciesResolver.java:149)
	at org.apache.maven.plugin.internal.DefaultMavenPluginManager.createPluginRealm(DefaultMavenPluginManager.java:402)
	at org.apache.maven.plugin.internal.DefaultMavenPluginManager.setupPluginRealm(DefaultMavenPluginManager.java:374)
	at org.apache.maven.plugin.DefaultBuildPluginManager.getPluginRealm(DefaultBuildPluginManager.java:231)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:102)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
	at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
[ERROR] 

Eclipse throw errors on pom.xml

image

After I import your project into eclipse, it getting me this highlighted error, I don't know what is causing on that, and don't know how to solve it... (Probably that related to the old issue I submit before that failed on build)

ng serve -prod -aot

can you fixe aot build mode?

"scripts": {
"ng": "ng",
"start": "ng serve --aot",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},

Material Design Conversion

Hi,
This is a great site. It help me understand a lot of thing about angular. But I only love material design. I would love to have a branch of this in material design.

Please consider a brunch of material design and only angular and material design dependency no third party library please. I would love to contribute in material design conversion with your guidance rather than fork it and do it on my own.

And with mysql db and better user management and role base ui access.

Unresolved compilation problems:

hi guy, when i run the app, it got an Unresolved compilation problems.
2017-04-17 15:16:07.144 ERROR 23964 --- [nio-9119-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang.Error: Unresolved compilation problems:
The method getUsername() is undefined for the type Login
The method getUsername() is undefined for the type Login
The method getPassword() is undefined for the type Login
The method getFirstName() is undefined for the type User
The method setToken(String) is undefined for the type SessionResponse
The method getFirstName() is undefined for the type User
The method getLastName() is undefined for the type User
The method getEmail() is undefined for the type User
The method setToken(String) is undefined for the type SessionResponse

Lazy Loading Loading Data till 20 Costumers

The Customers are only loading till 20 size. Bottom onScroll has a problem.

The temporary solution that i have used is :-

if (Math.abs(document.body.scrollHeight - (window.scrollY + window.innerHeight)) <= 100){
this.bottom.emit(true);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.