GithubHelp home page GithubHelp logo

priyankparker / spring-angular2-cli-starter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dlizarra/spring-angular2-cli-starter

0.0 1.0 0.0 2.98 MB

Starter webapp using Spring Boot on the backend and Angular 2 on the frontend, with Maven and Angular CLI as build tools, hot reloading on both sides and no xml configuration.

TypeScript 8.82% JavaScript 10.13% HTML 1.66% Java 79.39%

spring-angular2-cli-starter's Introduction

Spring Boot and Angular 2 starter app

Starter webapp using Spring Boot on the backend and Angular 2 on the frontend, with Maven and Angular CLI as build tools and with hot reloading on both sides.

Quickstart

Run the app:

git clone https://github.com/dlizarra/spring-angular2-cli-starter.git
cd spring-angular2-cli-starter
mvn spring-boot:run

The app will be available at http://localhost:8080.

There's also a sample REST endpoint at /users, the H2 console at /h2-console and all the endpoints exposed by Spring Boot Actuator (/health, /beans, etc.)

Start developing

The Java code is available at src/main/java as usual, and the frontend source files are in src/main/frontend.

Running the backend

Run StarterMain class from your IDE.

Running the frontend

Go to src/main/frontend and run ng serve.

Now we should work with http://localhost:4200 since this is where the Livereload server will serve the content. All the requests will be proxied to the Spring Boot backend at http://localhost:8080.

We can change the proxy url in the .ember-cli file.

How the build process works

There are only configuration files involved:

  • package.json where we have a "build" script that runs ng build.
  • pom.xml in which we configure the frontend-maven-plugin to run this "build" script during the generate-sources phase.
  • The .ember-cli file where we specify the output directory for the compiled frontend files, which is src/main/resources/static.

When we run mvn spring-boot:run the frontend source files will be compiled and left at src/main/resources/static which is one of the default locations that Spring Boot specifies for static content (the others are /META-INF/resources, /resources and /public), so it will take those files and move them to target/classes/static.

Hot reloading

In the backend we make use of Spring DevTools to enable hot reloading, so every time we make a change in our files an application restart will be triggered automatically.

Keep in mind that Spring DevTools automatic restart only works if we run the application by running the main method in our app, and not if for example we run the app with maven with mvn spring-boot:run.

In the frontend when we run ng serve Angular CLI starts an Ember Livereload server that will watch for any change in our frontend files.

Profiles

The project comes prepared for being used in three different environments plus another one for testing. We use Spring Profiles in combination with Boot feature for loading properties files by naming convention (application-<profile name>.properties).

You can find the profile constants in StarterProfiles and the properties files in src/main/resources.

Database

The database connections are configured in DatabaseConfig where we can find a working H2 embedded database connection for the default profile, and the staging and production configurations examples for working with an external database.

Instead of the default JDBC Tomcat connection pool we added a faster Hikari CP one.

Repository layer

The project includes three base data repositories:

  • ReadOnlyRepository: We can use this base repository when we want to make sure the application doesn't insert or update that type of entity, as it just exposes a set of methods to read entities.
  • CustomCrudRepository: It's the same as the CrudRepository that Spring Data provides, but the findOnemethod in the custom version returns a Java 8 Optional<T> object instead of <T>. It's just a small difference but it avoids having to override the findOne method in every repository to make it return an Optional object. This repository is intended to be used when we don't need paging or sorting capabilities for that entity.
  • CustomJpaRepository: Again, it's there to provide the same funcionality as the Spring JpaRepository but returning Optional<T>. We can extend this base repository if we want CRUD operations plus paging and sorting capabilities.

Security

All the boilerplate for the initial Spring Security configuration is already created. These are they key classes:

DTO-Entity mapping

The project includes Orika and it already has a class, OrikaBeanMapper, ready to be injected anywhere and be used to do any mapping. It will also scan the project on startup searching for custom mappers and components.

You can see how to use it in UserServiceImpl or in this sample project.

This, along with Lombok annotations for auto-generating getters, setters, toString methods and such, allows us to have much cleaner Entities and DTOs classes.

Unit and integration testing

For unit testing we included Spring Test, JUnit, Mockito and AssertJ as well as an AbstractUnitTest class that we can extend to include the boilerplate annotations and configuration for every test. UserServiceTest can serve as an example.

To create integration tests we can extend AbstractIntegrationTest and make use of Spring @sql annotation to run a databse script before every test, just like it's done in UserRepositoryTest.

Code coverage

The project is also ready to use Cobertura as a code coverage utility and Coveralls to show a nice graphical representation of the results, get a badge with the results, etc.

The only thing you need to do is to create an account in Coveralls.io and add your repo token key here in the pom.xml.

And if you want to use different tools you just need to remove the plugins from the pom.

Continuous integration and deployment

A travis.yml file is included with a minimal configuration just to use jdk 8, trigger the code analysis tool and deploy the app to Heroku using the api_key in the file.

We also included a Heroku Procfile which declares the web process type and the java command to run our app and specifies which Spring Profile we want to use.

Tech stack and libraries

Backend

Frontend


spring-angular2-cli-starter's People

Contributors

dlizarra avatar

Watchers

James Cloos avatar

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.