Category Archives: Java

HelloWorld java application on Codenvy.com

Recently I discovered the codeny.com and it amazing! You can code in the cloud wherever you want. Bellow, it’s a Hello World java application which runs on the codenvy.com HelloWorld.java, located on src/main/java/HelloWorld public class HelloWorld { public static void main(String[] args) { System.out.println(“Hello, World”); } } pom.xml <?xml version=”1.0″ encoding=”UTF-8″?> <project xmlns=”http://maven.apache.org/POM/4.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://maven.apache.org/POM/4.0.0… Read More »

6 Powerful Frameworks for creating RESTful services in Java

Representational State Transfer (REST) is a software architecture style consisting of guidelines and best practices for creating scalable web services. Here is a list of best Frameworks specifically for creating RESTful services in Java. 1) Dropwizard Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services. Dropwizard is a opinionated framework for setting… Read More »

How to use Google free SVN repository with Eclipse

If you already have a gmail account, make sure you’re logged in (that way, your repository and your account will be linked). Start here: http://code.google.com/hosting/ Go to the ‘Create a new Project’ link and create your project… Install eclipse if you haven’t already (current recent version is 3.5): http://www.eclipse.org/downloads/ Now you need to install the… Read More »

Install JDK on Windows 7

Download and install Java JDK in your computer. Set up the path in Windows 7 for use your JDK, the JDK contains the Java applications for run and compile java programs in a folder called “bin”. Go to control panel -> system -> advance system settings -> environment variables -> new in User Variables. The… Read More »