Web Hosting for a learner?

I want to start teaching myself the J2EE. I haven't got a server to play on. Should I look for cheap web hosting, buy a server? How hard is it to get a basic linux solution going?
[187 byte] By [zneroladivada] at [2007-9-28 9:34:21]
# 1

You can run any of the code you create on your development machine. That's we J2EE developers develop this stuff.

Unless of course, you want the public to see it. Then you will either need to host the application on a publicly visible server or pay to have it hosted.

For learning, I'd stick to running these things on your development machine.

meadandalea at 2007-7-11 22:44:14 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
I need IIS or something right?
zneroladivada at 2007-7-11 22:44:14 > top of Java-index,Other Topics,Patterns & OO Design...
# 3

No.

It depends on what you are trying to develop/host. For servlets and jsp's, you can just use jakarta tomcat. If you want to do EJB development, you will need a full blown application server. There are many application servers freely available for development use (e.g. JBoss, HP-AS). Most application servers either natively support or come bundled with a web engine to serve up static content so you don't need a web server like IIS or apache.

meadandalea at 2007-7-11 22:44:14 > top of Java-index,Other Topics,Patterns & OO Design...
# 4
This one is good. I use it. http://www.eatj.com
gangcaia at 2007-7-11 22:44:14 > top of Java-index,Other Topics,Patterns & OO Design...