20

As a programmer with limited experience, and interest, in server management, what are some good options for having space available online that makes getting to the actual development and deployment of Java web applications simple?

Needs: - ability to create, or at least manage a database through non-command line interface, even if it just requires using a remote connection to the database manager - deployments can be done from remote server - hooking up a domain to a Java server context needs to be easily done (I don't want to manage something like mod_jk with Apache manually)

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
walnutmon
  • 5,873
  • 7
  • 42
  • 57
  • @BalusC May I know which hosting platform you actually ended up utilizing and what your experience was like? :) – Ebony Maw Jul 27 '17 at 18:32

7 Answers7

10

It all depends on how cheap you want to go. Google App Engine is the cheapest (free) for small sites, but if your site gets very little traffic you have to wait for the JVM to start up.

Here are some links to check out:

Inexpensive VPS/Cloud:

http://www.joyent.com/services/cloudhosting/

http://performancehosting.net/hosting.php

http://www.godaddy.com/hosting/virtual-dedicated-servers.aspx

A little less expensive, but very popular:

http://aws.amazon.com/ec2/

If you are a Java dev and are interested in a very fun, simple Java-based web framework and hosting package:

http://www.playframework.org/

http://www.playapps.net/

More reading: http://mediatemple.net/

http://www.rackspacecloud.com/

http://mor.ph/products

http://www.rightscale.com/

http://www.cloudfoundry.com/

Will Iverson
  • 2,009
  • 12
  • 22
5
  • Virtual Private Server (VPS) - rather cheap, prices start at around 13 dollars / month
  • Google App Engine (but it imposes some limitations)
Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
5

Jelastic (Java Elastic) provides an advanced cloud hosting platform for Java developers. It simplifies provisioning of dev, test and production environments for simple and complex Java projects, automates horizontal scaling, load balancing and clustering. It also provides a unique vertical scaling which actually saves a lot of money and enables scalability for legacy applications that were not designed as microservices.

Java Elastic Cloud Hosting

Ruslan
  • 395
  • 3
  • 12
2

Another cheap option in addition to others already listed:

http://vpsland.com/windowsplans.html

http://vpsland.com/linux_vps_plans.php

Manius
  • 3,594
  • 3
  • 34
  • 44
0

If you are looking for something cheap and at the same time you would like to deploy in a simple way, you should take a look at some PaaS providers as they usually offer a free tier and they also permit you to deploy without installing or configuring any software in the user end. You just need to have your .war file and to deploy it.

Not all the PaaS support the same stacks. If you are only interested in a specialized java a PaaS a simple search with the key words "java platform as a service" will give interesting results.

Captain Haddock
  • 488
  • 2
  • 7
0

You can use IBM Bluemix It has a 30 day free trial and after that you are charged for the time that your apps run and the memory that is used, calculated as GB-hours, so you only pay for what you use. Also there are a lot of tutorial about how to use Bluemix, here you can find a Java,Ajax and Cloudant (database) example: http://www.ibm.com/developerworks/java/library/j-hangman-app/index.html

li_developer
  • 139
  • 1
  • 2
0

Also check out Oxxus.net java hosting offers. They have java-ready VPS servers that come loaded with whatever JVM you want and also clustered solutions for scalability. They've been hosting java since 2003 and have no negative reviews online so it's worth checking out.

Dejana
  • 1