• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to develop web site

 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai All,

I am new to java.I need develop a web site for a company.What are the things need to be consider in developing a website plese let me know

very urgent

Thanks
IN advance

Suma
 
Ranch Hand
Posts: 144
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You may want a webserver (like apache), database (like postgre), a programming language (like java), and a server (computer).



This is similar to the "how to make a MMORPG" question I answered before. I went into detail and actually tried to explain how to make one. This is a huge question and making websites is not trivial (unless it's just a few static HTML pages).
 
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sumaraghavi,
can you be specific,you mentioned website, Is it dynamic or just a static website?
 
sumaraghavi ragha
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

Sorry I don't what is mean by a Dynamic and Static Webpage

Please make it clear.

Thansk
Uma
 
Ranch Hand
Posts: 1902
Hibernate Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by sumaraghavi ragha:

Sorry I don't what is mean by a Dynamic and Static Webpage


Generally, a static website is one that uses only HTML, that the content does not autogenerate from some back-end system. A dynamic website would use Java/ASP.Net/PHP/etc to generate the content from sources and would change with time to reflect updates to that information.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Has nothing to do with job discussions. Moving to JSP

Eric
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Static means that the pages stay the same.
If something new needs to be added, you would have to change or add a page and upload it to your webserver.

Dynamic pages are built on the fly. Often information is pulled from a database residing on the webserver and that data is used to build the content of the page.

Are you new to HTML?
If so, I wouldn't bother with Java yet.
Find some HTML tutorials on the web or pick up a recent book on web design.
That plus a browser and a text editor are all you need to get started.

Once you're comfortable building static pages, then, if you need to add dynamic content and want to use Java come back and ask again.
We can tell you what you need to get and learn to get started.

-Ben
reply
    Bookmark Topic Watch Topic
  • New Topic