Code Monkey home page Code Monkey logo

generator-dropwizard-angular-gradle's Introduction

generator-dropwizard-angular-gradle

This is a Yeoman generator that scaffolds out a freestanding web application using:

  • Angular.js, Typescript and Less for the client
  • Java 8 and Dropwizard for the server
  • Gulp and gradle for client dependency management
  • Gradle for server dependency management

Getting Started

Install Yeoman via npm:

$ npm install -g yo

Once you've got Yeoman set up, install this generator:

$ npm install -g generator-dropwizard-angular-gradle

Create the directory in which your new project will live, then call Yeoman to scaffold out your project:

$ mkdir awesome
$ cd awesome
$ yo dropwizard-angular-gradle

Answer a couple of easy questions, and you'll be greeted with a ready-to-rock project. Open the directory up in your Java IDE of choice (I like IDEA myself), import the project as a Gradle project, and you're good to go.

Client development

There's no need to restart the server every time you make a front-end change. When you start your client development, run:

$ gulp watch

from inside your awesome-app directory, then make changes in your favourite editor to the HTML, Less, and Typescript source files in awesome-app/src. As you save your changes, they'll automatically be compiled down into CSS and Javascript, and any open browser tabs will be kept up to date with the latest compiled files.

Shipping

Wow, that was fast! Once you're ready to deploy, run:

$ ./gradlew distZip

from the root of the project, and you'll receive a handy deployable .zip with all of your Java dependencies, compiled front-end resources, and runtime configuration:

$ ls awesome-distribution/build/distributions/
$ awesome-distribution-0.0.0.zip

Use git flow and you'll get automatically-sane version tags on your deployable artefacts, too. Ship that .zip onto your server, unzip it, and start your service as you would any Dropwizard server:

$ unzip awesome-distribution-0.0.0.zip
$ cd awesome-distribution-0.0.0
$ ./bin/awesome-distribution server var/conf/server.yml

Hit up your server in a browser (http://localhost:8000/ by default), and you should see your shiny new application, live and ready to go.

generator-dropwizard-angular-gradle's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

generator-dropwizard-angular-gradle's Issues

Gradle wrapper distributionUrl is set to ivy.yojoe.local

When I run yo dropwizard-angular-gradle I get the following message:

Downloading http://ivy.yojoe.local/artifactory/gradle/gradle-2.7-bin.zip

Exception in thread "main" java.net.UnknownHostException: ivy.yojoe.local
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184)

I noticed that you specified the following distributionUrl for the Gradle wrapper:

distributionUrl=http://ivy.yojoe.local/artifactory/gradle/gradle-2.7-bin.zip

This looks like an internal mirror which is not reachable by the public and should be:

distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip

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.