engma
engma

Reputation: 1969

linking my java web application to the web?

I am beginner java web developer, now my question is after i developed my application, how to make users see it on the web?

I used JSF,MySQL and GlassFish server in my development stage and now i want to publish it.

I got a domain name and an a web hosting account on goDaddy.com

In other words what to do after i develope my web application? what steps should i take in server creation and other stuff?

I have searched alot but there is no specific way for it. I am trying to make this dynamic website based on jsf development--and it is already done--become alive and out their like any other web site?

any guide lines and steps should i take in making this steps ?

Upvotes: 1

Views: 1152

Answers (3)

derdc
derdc

Reputation: 1101

Either you will need a "Production" server to host the application yourself or use a hosting service of some kind that provides a Java EE container. If you're tied to Glassfish, you can Google for those providers like http://glassfishhosting.com/.

Other options that might be good fits for you are cloud services. Something like either Rackspace or Amazon EC2. Each has their own pricing tiers that scale based on usage. Good luck to you going Live!

Upvotes: 2

dardo
dardo

Reputation: 4970

Can host the code on Github and push it to Heroku.

http://devcenter.heroku.com/categories/java

Upvotes: 2

Matt Handy
Matt Handy

Reputation: 30025

I don't know the provider you chose but you need a java application server for your live environment. And optimally this should be the same server as your development server.

For our projects we buy a virtual server and install Glassfish on it. This costs around 15 € per month and we have the same environment for development and production.

Upvotes: 1

Related Questions