Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a dropwizard example [closed]

Tags:

dropwizard

Looking for a dropwizard example I found:

https://github.com/codahale/dropwizard/tree/master/dropwizard-example

But I am interested in a more complete example with at least:

  1. a 1:n relationship like customer - account
  2. a html gui represenation at least with forms
  3. full crud support for xml

2 out of three would be a start and would earn "accepted" by me.

like image 231
Wolfgang Fahl Avatar asked Nov 12 '12 14:11

Wolfgang Fahl


People also ask

Is Dropwizard open source?

Dropwizard is an open-source Java framework used for the fast development of high-performance RESTful web services. It gathers some popular libraries to create the light-weight package.

How do I start the Dropwizard application?

To invoke the run method, you will need to have public static void main(String[] args) {} method, which will invoked by java -jar command when you run the application as jar file. For executing the JAR file, we add the server argument to the command which starts the embedded HTTP Server (Jetty) to run our service.

What is a Dropwizard application?

Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services.  Dropwizard pulls together stable, mature libraries from the Java ecosystem into a simple, light-weight package that lets you focus on getting things done.


1 Answers

Take a look at some of my Dropwzard projects

In particular the MultiBit Merchant projects (Admin, Store and Platform) will provide you with a wealth of demonstration code that shows how to get stuff done in Dropwizard. There is also an example of OpenID with Dropwizard that should provide a good launch point for a new application.

They are all FOSS under the MIT license.

like image 162
Gary Rowe Avatar answered Oct 19 '22 20:10

Gary Rowe