Java Is So 90s 923
An anonymous reader writes "Some of you may recall last year's Java vs. LAMP Slashdot
flamewar. The fight has now "brewed" (couldn't resist) into the mainstream press at
BusinessWeek." From the article: "Yared says developers far and wide are creating a new generation of Internet-based applications with LAMP and related technologies rather than with Java. Can it possibly be that Java -- once the hippest of hip software -- has become a legacy technology, as old and out of style as IBM's (IBM) mainframe computers and SAP's corporate applications? Mounting evidence points to yes. Reports by Evans Data Corp., which does annual surveys of the activities of software developers, show Java use is slipping as LAMP and Microsoft's .NET technology gain traction."
The real 90s versus outdated 00s software (Score:4, Interesting)
I definitely do not think of Java as a 90s scripting/programming language -- although I do get very frustrated when Java apps don't run properly on my PDA. I do think that Java is an outdated language that always seemed unfriendly to users and caused a lot of extra cost/headache to my customers when every software company we supported seemed to attempt to create a Java app to access their software engines.
I think Java has (had?) some features that made it easier to program in, especially for not-so-wise programmers. The automatic garbage collection allowed my guys to make quick fixes without worrying about memory management (I am being sarcastic here, I had some real dumb asses subcontracting some of my work). The speed of Java was great too (still sarcastic), and the consistency of the output code was always a positive (yes, still sarcastic).
I guess my big concern with LAMP is what the hell is the P? PHP? Python? Perl? They're all very powerful and they all have their own positives and negatives in regards to quick scripting solutions, but all of them still allow bad programs to churn our badly written programs. I'm guessing that is the trade-off: the more complex programs you can write, the more likely you are to see badly written programs.
It is very hard not to be sarcastic when talking about Java. Every CEO of every company I consulted with loved to spew the big tech words, and Java haunted me for years. I'm glad I don't hear it anymore -- should I thank the dotbomb for that?
In the long run, I think the 90s client-server systems will come back into use. Software companies have every reason to move back to controlling their applications and charging for use rather than licensing the code out to end users. I seriously believe the push for faster cable modems and DSL to the home is through the software developers (and music and video publishers) in order to just stream everything rather than offer the user the ability of unlimited copying. Once you have 2MB WiFi nation wide, there is no need to ever store your programs or your media anymore, right?
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
How can you call it an "outdated" language? what is an outdated language? Ada is an outdated language, BASIC may be another.
I like Java (as a language) a lot, I have used it for enterprise level applications (supply chain management software) and currently I am using it to make market based simulations.
The wrong thing about Java is the Virtual machine implementation. You can blame Sun for that. If Java is slow, grabs lots of memory and all that it is because of the virtual machine, not because of the language. A language is just a BNF diagram specification which describes the syntax of the program, and all of its reserved words.
What Java needs is a better (less memory and faster) implementation of the libraries it has and the virtual machine to run the programs. As an example, almost everyone who has used C# or any other
Re:The real 90s versus outdated 00s software (Score:3, Interesting)
As a once was Java developer (now more LAMP and .NET) it seems to me that Java deserves two things. First, it deserves credit as the first of the truly wonderful cross-platform, virtual machine driven JIT compilation using languages. It was, without question, the inspiration for the .NET platform.
However, it also seems to me that Java is just not keeping up. It's windowing libraries still suck. Its VM barely improves with each release.
So Java's
Re:The real 90s versus outdated 00s software (Score:4, Insightful)
Ahem...
It should be truly wonderful, as-long-as-all-your-customers-use-the-same-version -of-the-VM-on-the-same-OS-unless-you-are-insane-en ough-to-figure-out-how-a-lot-of-different-virtual- machines-crap-out-on-your-code cross-platform
I like Java, but it's only cross platform in theory. You have to have good architecture to make it behave properly cross platform. Sure, it's easier than doing cross-platform in C/C++, but the customer doesn't care that its the VM's fault.
Re:The real 90s versus outdated 00s software (Score:4, Funny)
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
Doesn't prove that incompatibility doesn't happen, but does demonstate that cross-platform is entirely possible.
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
Re:The real 90s versus outdated 00s software (Score:5, Interesting)
Eh?
Java 5.0 VMs are vastly better than previous releases, with more optimisations and better garbage collection. They can routinely equal C++ in terms of performance. As for the windowing libraries, Swing is now hardware accelerated and totally indistinguishable from 'native' GUIs on MacOS/X and Windows Vista.
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
Other than that, in a bubble of pre-JIT'd code with only a single data point, Java Rules.
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
No.
There is no JIT startup lag in modern VMs - the JIT is not called at startup - it is a background thread.
There is no bloated memory footprint. Java applications (as in J2ME) can run in only a few hundred kilobytes. The simplest standard Java apps can run in only a few MB, which on machines with 256MB or greater is totally insignificant. Server-side apps can securely share the same VM, so can take up even less memory.
There are no performance losses when the garbage collector kicks in on modern VMs, as the garbage collection can run in the background. As proof of this, Java can now be used for real-time applications (such as in aeronautics) where any garbage-collection delay would be disastrous.
Other than that, you are correct.
Re:The real 90s versus outdated 00s software (Score:3, Interesting)
Re:The real 90s versus outdated 00s software (Score:4, Insightful)
No, this is not true. What happens is that the code starts up as interpreted so that the program can proceed without any JIT at all. Then, in the background, the performance profiling starts and time-critical sections of the code are translated. This is the way that the Hotspot optimiser works on modern VMs, and it is very effective in reducing start-up times.
Re:The real 90s versus outdated 00s software (Score:3, Interesting)
Background thread or not, the GC and the JIT'er take CPU cycles, (and lots of them). The only time you get a benefit from background threads is when the foreground process is blocked waiting for something else. All too often you're left waiting all right (for the JIT'er to finis
Re:The real 90s versus outdated 00s software (Score:4, Interesting)
No, I never implied that.
Background thread or not, the GC and the JIT'er take CPU cycles, (and lots of them). The only time you get a benefit from background threads is when the foreground process is blocked waiting for something else.
Exactly. In earlier implementations of Java the foreground process would be blocked waiting for JIT or GC.
All too often you're left waiting all right (for the JIT'er to finish, or for the GC's time slice to end).
Not with a good scheduler and the correct settings for the JVM. If this were true, then implementations of Java which also use JIT and GC would not be suitable for high-performance real-time control, where you must never be left waiting for anything! They are.
Just because something uses background threads doesn't mean it mysteriously improves performance.
It can't improve overall performance, but it can certainly improve things like start-up delays and event response times.
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
Wtf. Can you name a piece of "single threaded hardware" that provides "web services" (I assume you're talking about SOAP and the ilk?).
Re:The real 90s versus outdated 00s software (Score:5, Informative)
have to agree with Mr. Decaff there. Garbage collection has gotten more advanced using things such as incremental GC. Also, specialized VMs such as from bea (look for JRockit [bea.com]) use advanced techniques such as multiple GCs.
Also the article mentions:
For one, many of the now-large companies built from the ground up to operate on the Internet don't make Java a major piece of their tech strategy. Those include Google (GOOG) and Yahoo! (YHOO).
In this [sun.com] article, Li Moore (software engineer at Google) says: "Google makes extensive use of the Java platform. Large parts of popular Google products are written in Java. We also use Java in many internal systems and products under development." So, this would seem to be entirely untrue in Google. I wish people would do a bit of research, instead of speculate/lie (which are, of course, easier to do).
Finally, I notice that the author of the article asks Peter Yared and Marc Andreessen their opinion. What sort of answer would one expect from the CEO and chairman (respectively) of competing technology companies? Naturally, they would champion their own technology and bash a competitor. I certainly would if I were in their shoes!
Why Java still isn't faster than C++ (Score:3, Informative)
Oh, man, do we have to do this again?
Java has theoretical limitations that mean it will always have difficulty keeping up with a well-optimised C++ program.
For a start, let's get over the Hotspot thing. It's an optimiser. C++ has had them for a year or two, now, I hear. If Hotspot had revolutionary new techniques, why haven't they been adopted en masse in the C++ world? Presumably you can cite patents or similar that would prevent this?
There is
Re:Why Java still isn't faster than C++ (Score:3, Interesting)
>> Anything you can do with a flashy GC in Java, you can code up the same memory management algorithms in C++ if you really need it.
Why? I can download Java from Sun and it has this built in.
Performance hasn't been the issue with Java since 1.1, maybe 1.2. If you want to write embedded systems, device drivers, software with a small memory footprint, maybe Java isn't a good choice.
>> If the Java evangelists were right, and Java really was rivalling the performance of C++ and easier/safer/more pro
Re:The real 90s versus outdated 00s software (Score:3, Informative)
That would be Smalltalk.
Re:The real 90s versus outdated 00s software (Score:4, Insightful)
love:
object serialization
sockets
everything is an object
i/o
syntax
ability to pass objects and arrays as data types
consistency
threading
hate:
verbosity!!!
dogmatic approach -> there is one way to do anything
swing
overall, i'd say for alot of things, java is powerful enough and useful enough to do most programming projects. without starting a linux flamewar, i see java like linux on the desktop in some ways. it does 98% of what 98% of people need. however, there is no substitute for the remaining 2%. java's security model is limiting as is it's speed. i teach economics as well, and like in econ, there is a trade-off to everything. java trades speed and security for portability and simplicity.
it tried to be everything to everyone. reminds me of the old SNL bit about a desert topping and a floor wax.
however, as c/c++ brings enormous problems and difficulty which java solves, python has OO design and clarity and speed of development like java, yet is far more extendable. (think UI's)
had python the corporate backing of java it'd be more prevalent, which I'd like to see that happen in the near future, especially with the AP test. but, any language still boils down to the best tool for the job. and for many things, java is really good.
Re:The real 90s versus outdated 00s software (Score:3, Informative)
That's so wrong it hurts.
Primitive types are not objects, nor are functions, methods, or class.
Check Smalltalk, Ruby or Python (for example) to see what "everything is an object" truly means.
A class is an object, a module is an object, a function is an object, every single built-in type is an object. THAT is an everything is an object approach.
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
Eric
Invisible Fence Guide [ericgiguere.com]
Re:The real 90s versus outdated 00s software (Score:5, Interesting)
I'm not trying to flamebait, but I'd like to point out why JSP is much more attractive to me than PHP:
I guess it depends on where you came from (Score:5, Insightful)
C/C++ never took the rap for billions upon billions of dollars in lost productivity because of all the bizarre failure modes of memory allocation failures (hey, there's garbage on the screen... or, hey... it's Tuesday, the full moon is out and the app segfaulted again... coincidence?) or having some clever sixteen year old shove 80k up your 256 byte buffer. You can't tell me wrestling with the garbage collector isn't an improvement on this, because it's ridiculous.
Java of course is within spitting distance of C++ already in one or two benchmarks, but in reality nobody cared either way because you got things in trade that made it a good deal even when it was still quite slow. Not sure what "consistency of the output code" means, but...
You got it right about LAMP. The problems were often that the higher level systems (well, PHP anyway) were great for making websites, but didn't enforce enough rules to be a good idea for projects above a certain size. Still and all, a great many companies in the 90's said "OK, we need 8-way oracle boxes with hot swap CPUs and a 50 disk RAID and Oracle and Weblogic, and... now, what are we going to build exactly?" Most of these places could and should have just used PHP on a few pentiums and saved themselves time and money and headaches. On the other hand, I saw plenty of places coast on a slick of Perl and human blood well past the point where they needed real "enterprise" (hate that word) software development.
It seems like Java was only ever a victim of its own success. No one ever wrote a shitty applet or misused the VM in some way, where the whole language didn't get blamed as a result. Basically, it's another tool in the toolbox, and though it drives C/C++ guys to conniptions, it's the right choice to replace many applications programming tasks right now. Not that I wouldn't throw a party to meet its succeesor.
Unlike many big languages past, Java is probably never going away. No one seems to have realized it yet, but as the VM-first-mover it's the ultimate langauge standard. I bet you people will be porting the Java VM long after we're dead.
Re:I guess it depends on where you came from (Score:5, Interesting)
1) lack of a single, dominant library for all the things that Java provides (like serialization, gui, etc.) and generally fugly APIs for the ones that are mainstream.
2) coders who treated C++ as "C, with some new features" rather than treating it like "Java where you can import C functions". Use vectors, smart pointers, etc. and the language miraculously changes from fugly to pleasant.
If Java was just a C++ library and a good free compiler, we might have dodged this whole mess. The only loss would be applets (not gonna run untrusted C++ code on the browser) - and who would miss those? Really, who uses the hardware-agnosticism of Java anyways? If the hypothetical "Java Library for C++" was created to be platform agnostic (just as Java is) then you'd have the same functionality in C++ - after all, it's pretty easy to write C++ code that will compile/run everywhere if your libraries work the same everywhere, and your compilers actually follow the standards.
Re:I guess it depends on where you came from (Score:3, Insightful)
If you're going to do that, you may as well use Objective-C, or as I like to refer to it, "C++ done right".
Re:The real 90s versus outdated 00s software (Score:3, Interesting)
Yes perl is nice, but perl itself is 90's also.
There are ofcourse something that java has which these others do not, such as stronger types and a good OOP.
Re:The real 90s versus outdated 00s software (Score:5, Interesting)
and anyone who claims that java is 90's, should call themselves so lampish.
java is a multithreaded platform that runs across most servers that you can meet todays. it runs on windows
perl/php are no real competitors to java, they have never been
as a programming language the java language is quite superior to any other platform independent languages today, it doesnt need #define's in the code to compile everywhere nor does it need you to keep count on bits and bytes of the cpu architecture. again the only competition is coming from python.
php doesn't have threads, perl has clunky ithreads (hopefully we see something better in perl6). how can you even call a forced singlethreaded script a "php platform" ? yeah sure you can make the script complicated, or even fork it and use flock's and shared memory between the things
java and python are the ones that are fighting for the throne of opensource application servers and services. php is dying and perl is
and somehow i forgot ruby altogether
from my point of view :
perl : yay, my swiss army knife, my love, my favourite tool
php : easy way to do dirty stuff quickly, good for little servers
python : a well start dudes, keep the pressure on, good almost everywhere.
java : i only wish it had a smaller memory footprint, great for real servers, overkill for little ones
if there's anything in the opensource world that can obsolete java then it's python and it's compiled bytecode.
perl & php without proper persistance and threading models are so 90's. and using php scripts that are 4-5 times slower than the according in java or python analogues is so 90's too.
Re:The real 90s versus outdated 00s software (Score:3, Informative)
How about a 100 thousand plus line app running flawlessly on Windows, OS X, Netware, Solaris and AIX? Not linux yet, but close. The problem wasn't with our code, but getting drivers for third party hardware.
Oh, and also talking to MSDE, MsSQL, MySQL, Oracle and Postgres databases.
Why this kitchen sink of combinations? Because that is our customers environments and if we can say we work
Re:The real 90s versus outdated 00s software (Score:5, Informative)
I work on a Java app that processes over 25 million transactions a week for a large financial institution.
This app used to run on OS/390 but we moved it to Solaris and the only compatibility problem we found had nothing to do with Java but SQL language differences going from DB/2 to Oracle. Now we do all of our development on Windows and our production runs on Solaris using the code we compiled and packaged on Windows.
Now that might not be "every platform" but I think you'll agree that the three platforms I mentioned are about as different as you can get. Especially OS/390 on which none of the other languages mentioned in this discussion will even run.
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
Quite a straw man there. Very few real "developpers" will claim to make *anything* run "flawlessly" on even one "plateform". Come back and share your opinion once you're able to write a "flawless" English sentence.
With a parochial attitude, it's easy to introduce an unintended platform dependency. But with a little care about platform issues (especially where access the filesystem is concerned), Java runs smoothly across OSX/Windows/Linux/Solaris/OS400/Mainframes.
Re:The real 90s versus outdated 00s software (Score:3, Informative)
Even though I am mainly a Java developer, I agree that the Ruby language deserves a lot of success. However, I really don't think that there is a lot of momentum around Ruby on Rails. There is a lot of press, and a lot of discussion, but there is little evidence that this has actually r
Re:The real 90s versus outdated 00s software (Score:3, Interesting)
"Write once, run anywhere" certainly was oversold. For server-side applications, however, it's awfully close to reality.
We currently test our server-side Java application on Solaris, RHEL, and Win32 (2K, XP, 2003) with JBoss, WebLogic, and WebSphere as the app server with zero changes outside of two configuration fields. All of the internal code that pays attention to the platform differences (and there's more for app server than fo
Re:The real 90s versus outdated 00s software (Score:5, Funny)
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
The Perl Way is to let you do what you want. That you chose to code poorly (or didn't know any better) isn't a reflection on Perl, unless you believe Perl should have forced you to program a certain way.
Larry Wall is a linguist and he wrote Perl.
Linguist Larry Wall wrote Perl.
Larry Wall, a linguist, wrote Perl.
A linguist wrote Perl; his name is Lar
Bad programmers... (Score:3, Interesting)
Right and guns don't people, people kill people, but it's a lot easier to kill people if you've got a gun, non? I think it can be legitmately said that the nature of Java is better lended to well structured code. It doesn't mean you can't write well structured Perl, but on the average, people will write better code in Java than they will in Perl. Sure, a good programmer can w
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
> > bad programmers do!
>
> Nonsense. Languages can be specifcally designed to
> encourage and assist programmers in achieving
> different outcomes. PHP - being poorly designed -
> encourages poor practices and certainly does not
> enforce or even encourage secure code. Hence why
> it is an absolute disaster in practice.
I don't think it's really fair to claim that a language which is designed for those who are more familar with
Re:The real 90s versus outdated 00s software (Score:3, Insightful)
Re:The real 90s versus outdated 00s software (Score:5, Insightful)
Java not flexible?! (Score:3, Insightful)
Swing components are plenty flexible. It's not hard to add checkboxes to trees, have spanning columns in tables etc...
Where do you feel java lacks flexibility?
The only thing i feel is that it's not ideal for quick and dirty tasks. I write little perl scripts all the time to accomplish one of tasks that would take 5x the time in java. But for real software development that's more or less a non-issue.
Don't Flame Me Because I'm Beautiful ... (Score:5, Insightful)
And now begins the second flame war started by said article.
Gentlemen and nerds, prepare your flamethrowers and ectopacks [tripod.com] (respectively)...
Begin!
When will I see a constructive article comparing and contrasting the two and inviting a civil conversation and an acknowledgement that there are fans on both sides?
Come on, it's not like this is a religious argument or (possibly worse) a Star Wars vrs. Star Trek argument.
In Related News (Score:5, Funny)
Re:In Related News (Score:5, Funny)
The first code I ever wrote that had an actual purpose was in BASIC:
10 for i = 1 to 10020 print "I will not talk in class."
30 next
(True story!)
Re:In Related News (Score:5, Funny)
And it's STILL RUNNING!!!!
And when they say "LAMP" (Score:3, Insightful)
And when they say middleware, they mean Ruby [blogs.com]!
PHP vs. Java (Score:5, Insightful)
Re:PHP vs. Java (Score:4, Funny)
If PHP is so scalable, then why use Java for enterprise applications? :-)
Re:PHP vs. Java (Score:3, Insightful)
I have a certain fondness for PHP as it's the first web based scripting language I used - but I think you will find that creating a large, complex, and scalable application with a web front end will be much easier, and more robust if done so in Java (them fighting words I know!).
This isn't to say writing web apps in Java is easy. Writing entity beans, and even session beans can be a headache and Java can be made unmaintainable if not careful. i.e. session beans _can_ be made very unmaintainable (if used i
Re:PHP vs. Java (Score:3, Informative)
I'll use http://www.wheeloyum.com/ [wheeloyum.com] as an example. The web site is 100% LAMP. The app (client, applet, and server) is 100% Java. They both do well for their job. They even communicate with each other. Obviously they have their own strengths and weaknesses, especially relative to each other.
As with m
Java programmers are more expensive (Score:3, Interesting)
Re:Java programmers are more expensive (Score:4, Insightful)
It is to laugh (Score:5, Insightful)
Java is still in incredibly heavy use in larger-scale systems and internal applications. It doesn't need to be "hip", "trendy", or "LAMP". It just needs to do a job, do it well, and be maintainable. It does that (and more), has still proven fairly easy to scale from small projects to very large, and is still a decent (though not terrific) language.
It also plays well with many other solutions, by virtue of numerous scripting languages which target Java bytecodes, as well as native code integration if you simply cannot get by without some piece of C code (although, there goes easy portability - one of the major benefits).
These articles are just a joke. That they would even use the term "hip" shows that this is far from a serious study.
Finding its place (Score:3, Insightful)
Re:It is to laugh (Score:5, Insightful)
Well, I would, and I did. What other language is going to give you the ability to write one hunk of code that will act as a client and/or a server from Linux/Aix/Solaris/HPux/Windows/Mac/etc?
For us, the best tool for the job was Java. Period. End of subject.
But that's what it's all about... determining the best tool for the job, and dealing with the inherent trade-offs.
To say that one language is better than another, without context, is meaningless.
Re:It is to laugh (Score:3, Insightful)
Actually almost any popular language would port to any of those platforms, including (thanks to Mono) .NET. Heck, with anything but Java you could add in the BSDs as well.
Java advocates get really excited about Java's cross-platform ability, but Java isn't even really that portable compared to LAMP stack languages like Python, Perl, or PHP. Like I said, I'm a Java hacker myself, but I think that the days when Java was almost always the clear choice are coming to a close.
.NET?!? (Score:5, Insightful)
Isn't
I mean really, not long after MS dropped Java, C# "popped up"
It's clear that C# is only a repackaging of Java, why should its fate be any different?
What makes
Re:.NET?!? (Score:5, Informative)
Well, I'm not sure what Java's fate is, but while
As far as the CLR vs the Java runtime goes, Java byte code is fairly specific to java. It's possible to create non-Java languages that target the byte code, but it's not particularly practical. The CLR, on the other hand, was designed from the start with the idea of multiple language support [editthispage.com].
It may not seem like a big deal to some, but being able to write more or less equally capable code in VB.NET, C#, J#, C++, Python, or a long list of other languages really does increase adoption.
The CLR affords far better platform specific integration than Java. JNI is complicated and horrible. COM Interop and API invocation in
The security framework built into
The CLR has support better support for a variety of programming constucts, such as generics, than Java does... or, in some cases did but the latest and greatest java releases have done a pretty good job and matching
While both
As far as language comparison goes, it's not really all that useful since the CLR supports pretty much everything you could think of, including a nearly 1 to 1 copy of Java. (J#). But if we must, here is a great, although some what dated, comparison of Java and C#.
Isn't
Not really. It's an evolutionary step. They certainly looked at Java, but they looked at everything. Managed runtimes were not invented by Sun. They've been around for 30 years. Microsoft creating
Re:.NET?!? (Score:5, Informative)
Re:.NET?!? (Score:5, Insightful)
Actually Jython [jython.org] runs very nicely on JVM. I know there is JRuby in the works, plus several others.
On the other hand, Java runs on Unix and Windows. Is there a working version of .NET for Solaris?
Re:.NET?!? (Score:5, Informative)
Many of your points may be correct, but a price comparison is not necessarily one of them.
rob.
Re:.NET?!? (Score:3, Insightful)
The vast majority of Java app server usage is comprised of exactly two productions: WebSphere and WebLogic.
WebSphere and WebLogic both large companies ready to support you if you run into issues. (Although I think HP is starting to offer support for JBoss, which could help it increase its market share.)
For most mission critical deployments, WebSphere and WebLogic are the only choice for many com
Re:.NET?!? (Score:3, Insightful)
Forced by who? VS.NET fully supports writing 100% unmanaged C++, and Microsoft is dedicated to supporting their unmanaged C++ libraries for a long, long time. In fact, one of the best parts of
As far as VB, official support ended in March I think, but VB 6 isn't going anywhere for a while. There
Stupid new buzzword (Score:3, Funny)
I will shut up and get back to coding this app in PHP, now.
J2EE != Java (Score:3, Insightful)
J2EE is dying, long live Java
Perl and Python are older than Java (Score:3, Insightful)
Perl was always a programmers tool, and never had the mainstream hype that surrounded Java from the start, so I kind understand why a journalist could get it mixed up.
Mainframes Old and Out of Style??? (Score:4, Insightful)
My clients are very large financial instituions and I don't know one of them who is reducing mainframe capacity. In fact, almost all of them are increasing capacity.
Most managers find it troubling that their mainframe-centric data centers continue to be well managed, predictable facilities while their Open Systems (UNIX, Wintel, Linux) data centers are a mess. Horribly erratic power and space consumption and many other woes that make management and planning a nightmare. Blade servers have not solved these problems - in fact, they have intensified them (powering and cooling 1000+ W/sq' is much more difficult than 50-100 W/sq').
While style is subjective, age is not. There's nothing old about the new systems IBM recently announced. Also, if being in style leads to huge cost overruns or getting fired, many of might choose to be a little less stylish.
Lies, Damned lies and Statistics (Score:5, Interesting)
What worries me is that I teach at a community college. One of my colleagues subscribes to Business Week and takes them quite seriously. I'd rather not have to get into a curriculum battle over this. Business week just needs to STFU about technology in industry, because people who have limited contact with it (either by not interacting with the technology or not interacting with industry) will often take their ill-informed articles as Truth. (Incidentally, I left industry 4 years ago and am close friends with others still in various sectors. Even after only 4 years, I'm very suspicious of my own first thoughts on the way industry is going, and I always get first-hand input.
Re:Lies, Damned lies and Statistics (Score:3, Interesting)
What was your Masters in, Art History? Or do you just live in Lower East Nowhere? I live in frickin' Nebraska, for $DEITY's sake, and there's Java jobs a-plenty. Hell, I'm getting cold calls again, and that hasn't happened since the bubble burst.
All I know is (Score:3, Funny)
Get a better book (Score:3, Informative)
It takes a lot of practice to be a proficient programmer. Get a copy of Just Java 2 by Peter Van Der Linden. It's probably the best Java book out there and a fun read at that.
Read the book, put in the time an
Java takes up the COBOL banner 'Java-Correctness' (Score:3, Interesting)
So, what do you want to do today; be correct or be productive?
How to have a disaster of a project (Score:3, Insightful)
(Digression: "hip"? Who says "hip" any more? It's so 1960s...)
Stats Don't Lie! Java OWNS the current market! (Score:5, Informative)
Here's the spreadsheet that I put together. It's in no way scientific, but it is a good indicator that Java, C++, and Oracle own the programming jobs market.
http://www.timothytrimble.info/ForSlashDot.htm [timothytrimble.info]
If you don't believe me, then do the stats yourself. Go to HotJobs, Monster, Dice, CareerBuilder and find out for yourself. The stats don't lie!
Timothy Trimble The ART of Software Development
Re:Stats Don't Lie! Java OWNS the current market! (Score:3, Interesting)
Java use slipping? You have to be joking (Score:5, Insightful)
http://www.osnews.com/story.php?news_id=12778 [osnews.com]
Java is a popular and versatile language. Software development involves far more than the very restricted aspects covered by LAMP.
It's not the techology, it's the people (Score:3, Interesting)
Writing JSP pages isn't really that much different from writing PHP pages; you can write them in a PHP style. But Java people tend to be degreed software engineers moreso than PHP hackers, so they make things complicated and build up layer upon layer of infrastructure, and you need to know a lot more to be able to deal with all those layers effectively. (And you end up needing to use struts, or EJB, for example, not because it's easy, but because management or coworkers pressure you into it.) Alternatively you can just do your database queries right in the JSP pages, which is ugly in a design sense (schema changes can be harder to propagate through the whole system) but very PHPish, and at least the whole pile of code will be smaller and more manageable if you have fewer layers to deal with.
The myth of software engineering is "after I write this nifty abstraction layer I'm never going to think about this facet of the problem again" (whether it be hardware abstraction, dealing with the database, the GUI API, dealing with web-based transactions and user-specific "state", or anything along those lines that you don't enjoy and would like to box up and forget about). The reality is that every layer you write also requires some maintenance, so you cannot avoid having to think about any of those things again. PHP hackers are just more likely to suck it up and deal with these annoyances head-on, with as terse code as possible, rather than try to abstract them away.
But some of the abstraction layers that have been created for Java applications are really elegant. Some much more than others.
Another factor is that large projects, for which more people are hired than is really necessary, with too much management, tend to take the long way around, in the name of elegance and maintainability. If programmers are smart enough to invent really elegant abstractions, and they have the time to do it, most will do it. But if you're on a scrappy underfunded little project you just take the most direct path to get the job done.
Ruby? (Score:3)
The "hip" thing for ex-Java folks is not LAMP but Ruby on Rails. When Bruce Tate wrote Beyond Java, it seemed it was time to check it out- and after doing so I have to say he's on to something.
Seriously, if you like the whole direction of Spring / Hibernate / JUnit, you owe it to yourself to check out RoR. The speed and joy of LAMP with the architecture and cleanliness of the best Java solutions.
Too bad we can't mod the original article Troll (Score:3, Insightful)
I've used most of the technologies people have mentioned here, some extensively. None of them are clearly all-around better than the others in all ways, and the statistics concerning toolset use are meaningless because technical merits are rarely the deciding factor in what tools or libraries a particular project ends up using. It's usually either the project team deciding to use what they're comfortable with (i.e. the I've-got-a-hammer-so-this-project-must-be-a-nail approach), or imposed top-down by management who were sold on the merits of one solution by a salesperson/article/more technically-savvy friend, etc.
Hell, the closest thing to an all-around great-for-most-anything tool for building web application was NeXT's old Objective-C based WebObjects which, despite the fact that Apple let it die a painful death, was years ahead of anything else on the market, and even now after not being developed or supported for several years, is still ahead of many solutions in some respects. But I'm not about to recommend to one of my clients that they should use it, even though I might think it's technically a better solution than something else. These decisions, even when made intelligently (which is rarely), are not, and should not be, made in a vacuum.
Again? (Score:5, Insightful)
On one side you have a bunch of people who have never seen the kind of problems java solves so well.
These people for some reason think it's a horrible thing and must die. This has never made sense to me. I dislike a lot of crap that fits other people's needs and I don't really feel the need to rant against them at every opportunity. What kind of inadequacy drives this crap?
On the other side, you have a bunch of people who need it as is to get their daily jobs done. They are scratching their heads trying to understand why there is even a discussion going on.
If you are on a project with one developer and it's a web project, Java probably isn't for you. In fact, if you are on ANY project where you are the sole developer, don't bother unless you just like Java's syntax or you have worked in groups before and prefer the consistency and clear code that Java offers.
If you are writing a tiny app meant to run on a PC, dump java and write it in C/C++. The VM issues are kind of annoying that.
If you are writing a large client/server app, creating your own protocols, working with a group of 5-50 people, interested in long-term reusable clean code AND willing to spend the extra design time required to make such code, you might consider Java.
Honestly, I think most of the people complaining are trying to use "Java" to write some web app on their home computer and wondering why it's so hard. Like "Why does driving a backhoe have to be so much harder than riding my bicycle?!?!?" This is really for the hard jobs! If you don't have a hard job, if you are making a web app or something, Use your bicycle. PHP works fine.
Java makes a lot of the traditionally difficult issues much simpler, but these little apps typically don't even HAVE difficult issues, so yeah, Java may be a little cumbersome for them. Why did they even choose it in the first place.
My job became immensely easier and more fun by switching from C++ to Java. If you hate java, it may not be the tool for you! Backhoes are not great for tours around the lake, learn C++, VB, PHP, or whatever gets you off and enjoy. Just don't put down that funky looking, fuel guzzling backhoe unless you've tried digging a hole for a pool with your bicycle!
Re:Again? (Score:4, Interesting)
A powerful language for me is one that can be highly factored and is still completely readable. It means that nothing is hidden and no function is less than obvious.
Most importantly, a programming language is a communication medium between human and human, not just human and computer.
How well do the languages you listed help you communicate with some arbitrary programmer that you have never met and do not get to explain anything to face-to-face. As you add multiple languages into the mix (AJAX, etc) you make this human to human communication even more difficult.
Forget the libraries and J2EE, These are the things that, for me, makes Java a good enterprise tool:
Automatic documentation generation with the code being the source!
(This is one of the most important things ever done)
Simple, clean, consistent code
The ability to create clearly defined interfaces between sets of code (objects, in this case).
OO!
Deterministic--a GUI Editor always knows just what can be done with any given object at any time.
Shies away from adding features--towards consistency.
Garbage Collection
(Not simply because it makes code more reliable, because it makes it MUCH more clean/factored. If you've never had to fight the design battle of who owns/gets to destroy an object used by multiple other objects, you pretty much either aren't a programmer or you've always used a language with GC.)
I guess it all comes down to Elegance in code. Being able to do a lot with one line of code or being able to type 50% fewer LOC to do your job has no place in programming today and is, in fact, counter-productive. If you are actually thinking faster than you type when you're programming, you need to think more, not type less! (If you honestly disagree with this, try APL, you'll love it)
If you think that J2EE/Libraries are a reason to switch, you are exactly the person I was talking about in my previous post... the power is in the Language, not these add-ons. The language features I listed are exactly what allowed these complicated, complete, reliable toolsets to be built in the first place.
People that pick Java for the toolsets/libraries are completely missing the point. They are probably also the same ones complaining on every Java article to hit
LAMP, the new PERL? (Score:5, Insightful)
Like candy, it is fast and easy. Like candy, if you use it for your meals it will make you fat and rot your teeth.
LAMP looks a quick and dirty approach for sites, that is easy enough to use to be seductive which will lead to a huge base of hard to maintain code the way PERL did.
And threading? (Score:3, Insightful)
The fact is, programming a stateful, multithreaded application on Java is extremely easy, and in certain circumstances, a stateful application with multithreaded capabilities comes in very handy. I'm thinking things like artificial intelligence applications, messaging, delayed database writes, etc.
I have programmed sites that are PHP, with a Java multithreaded application used to handle certain transactions or self-organization of graph structures.
I thought this whole Web 2.0 thing was about open interoperability?
Re:UNIX (Score:5, Funny)
Meanwhile, somewhere in Denmark, a graduate student is thinking "...I like Java, but not Sun's dictatorial stance on it... I think I'll come up with my own and call it Lava... (Pronounced "LooVa")
Re:UNIX (Score:5, Insightful)
Here's a tip. Programming languages and platforms aren't sexy. They are tools. Use .NET if that's the tool that best fits what you need to do, or what your employer requires. Or use Java. Or use COBOL, if that's what fits. Under no circumstances should one use the above standard, which is about on the same level as some twelve year old girl deciding whose pictures are going to adorn her wall.
Re:UNIX (Score:5, Insightful)
Wow, that was the most disjointed thing I have posted yet! I was about to delete it, but it is so confusing, I just can't. Enjoy.
Re:UNIX (Score:4, Interesting)
Yes they are, coding in Ruby or Python is actually geniuinely fun and rewarding. Not having the language go in the way and prevent you from thinking about the program (the forest) because you have to think about the code (the tree) is like discovering programmation over again. Being 5 times more productive with a third of the code lines without losing any clarity or expressiveness (quite the opposite in fact) is refreshing.
There is no reason for programming language to not be sexy but the ones you accept when you use crappy languages.
I perfectly agree with the "Use the right tool for the right job", you can't use high level interpreted language when performances and memory footpring are issues, but you won't use Java either anyway...
Re:UNIX (Score:3, Interesting)
This is absolutely true. After wanting to take a look at Python for a while, I finally wrote my first program in it this weekend. It's a simple script that finds all words in a Boggle grid. (Useful for cheating here [shackworks.com]). It took maybe an
My take on this (Score:3, Insightful)
When I used to do simple JavaScripts, or simple ASP pages, or simple Perl scripts, a lot of my solutions also started very simple. Many of these languages did not lend thems
Re:UNIX (Score:3, Funny)
Re:UNIX (Score:3, Funny)
Quick! JAVA is the new BSD!
Re:Mod submitter -1, Troll (Score:3, Insightful)
Re:Mod submitter -1, Troll (Score:5, Insightful)
1. Having Microsoft release more software that supports their platform doesn't make the platform's industry support any better intrinsicly. So unless you can say companys x, y, and z are all moving strongly behind
2. Just because I disagree with your argument, I do agree that Microsoft based
I think the 'more' interesting finding is that Microsoft has been unable to seriously penetrate these Java / Web markets as much as they'd have liked. All they've done is create a third fraction of the modern development market. Most coders these days fall into three buckets: Java developer, Web developer,
Re:Interpreted Versus Compiled (Score:3, Funny)
Re:Interpreted Versus Compiled (Score:3, Insightful)
Requiring a complier can be a feature in applications that are anything but simple. If you have a syntax error in an interpreted language, and that syntax error is in a branch that does not get executed frequently, you won't know about that error until later, much later, probably early on a Sunday morning. On the other hand, a compiled language will flag the error at compile time.
Interpret
Re:Interpreted Versus Compiled (Score:5, Interesting)
But this is a misnomer.. Take a person off the street and teach him a "hello world" program in python or basic.. He'll say "Wow, I'm a programmer now!!".
Then ask him to synchronize two credit card databases of different structures with it. Ops, learning curve!
It's a damn-simple thing to do, but you needed to learn an API, and a bunch of underlying concepts first.
Same thing with java.. It is designed rigidly so that the programmer can make assumptions that make their life easier. You have to explicitly manage errors for one.. Doing so means whenever you change the form of data, you are forced to think about it to make sure that the data has exchanged correctly. In Python, perl, numbers become strings become floats become triggers based on how you tickle the data (not necessarily access). These are simply two different assumptions about the significance of the data. If I wanted to have refactor a perl object definition (say change a method name), it would be damn near impossible to do. I couldn't just perform a text-search for the method name because it would probably overlap w/ other methods that had similar names.. But in Java, that rigidity means I can clearly know exactly who uses this exact method.
If you're writing small apps and your definitions are distinct enough this isn't a problem.. But in my 15 years of programming, I've had to do a lot of refactoring, and in c or perl-type languages, I almost always resorted to work-arounds instead of true data-migration; as it just wasn't worth it.
I perfectly agree w/ KISS.. But Simple and concise are not the same thing... Perl/Python/Ruby provides conciseness (saying a lot with a little), but at the expense of convoluted code (your rails project has the name of a method mean several different things). Java provides preciseness (and of course the ability to shoot yourself in the foot by being non simple, non-concise and non-precise). You are able to be concise in Java if you make use of rails-like-APIs.. Essentially modularize/aspectize your code so that the complexity is held elsewhere to define a type of work.. Then you concisely write the core of your application. Hibernate + xdoclet or attributes provides an example of this.. EJB provides a means of isolation of units-of-work in a way that is scaleable, clusterable, and safe all at once.. (Not that I ever use EJBs directly; but there are plenty of EJB-like services). This is not to say that RAILS can't be made similarly.. But to my knowledge you are still choosing a particular framework, and don't have a lot of flexibilty to alter those large units-of-work outside of the original author's inception.
I've regularly hooked together many open-source units-of-work in ways that I'd never seen done before, and Java has always made this not only easy, but reliable (providing thread-safe, classloader independent, order-of-execution-safe, work-flows out of the box). Of course almost all of my units of work live inside of a serlvet engine.. Rolling your own main means that your mileage may vary.
Agreed! (Score:3, Interesting)
Re:ATi drivers (Score:3, Interesting)
It's
As for Java. It's not legacy yet. Sun attempting Microsoft type moves caused most of it's problems. Just like Sol
Re:The 'P' in LAMP (Score:3, Informative)
Any of the three
If you want to be able to code in the large sense, not specifically for the web, I'd advertise Python. Or Ruby. Both languages are really good to build offline applications, and just as good for online apps
Java badly needs a JDK 2.0 (not meaning J2SE) (Score:3, Informative)
Over the years, as new technologies were added, the interpreter and the API were constantly augmented. Basically the new features were slapped on like coats of paint, but it was never reengineered nor refactored. Look how little of the old cruft of 'deprecated' stuff from JDK 1.0 or 1.1 has ever been removed. For example, why does Java still need 3 types of rem
Re:Java: Where Components come from (Score:5, Informative)
Not sure what you mean here. Perl doesn't enjoy the "hip" factor that Python and Ruby have. But Perl has an overwhelmingly larger community than either of those two languages.
I like both Python and Ruby, and think they are better-designed languages. But Perl has a huge advantage over these other languages: CPAN. You can be more productive in Perl because 80% of your code is written for you, ready for the taking. Visit http://search.cpan.org/ [cpan.org] to see just how much stuff is there. But here is what the Python folks don't get. CPAN is much more than a repository. It's an automated distribution system. On any Perl system, type, for example, "cpan Spreadsheet::ParseExcel" and voila, you've got a class that can read binary Excel files. Any module you install may have other CPAN dependencies, which are installed automatically. These modules have a test suite and won't install unless they pass the tests. You can also, via CPAN, view the test results on many different platforms, see module ratings, the automatically extracted docs, discussions, the bug tracker entries for the module, etc. Because this is all standardized and centralized, you can write a module that depends on other modules without having to worry about inconveniencing your users--everything will install for them automatically. So the barrier to code reuse is very low, and people build modules by subclassing or otherwise extending and combining the functionality of other modules, simply writing the glue code. In other words, one of the basic tenets of the OO concept, encapsulation and code reuse, is being very elegantly played out in a place you wouldn't expect.
Ruby is getting a good start at emulating some of the CPAN functionality with their RubyGems. Python doesn't have anything like this yet. I have no doubt they will someday, and there's been brought up many times on the Python groups, and usually gets knee-jerk reactions that don't show an understanding of what CPAN has to offer. The vaults of parnassus, etc are certainly not even close to the same thing.
So, I am currently more productive with Perl, and it is certainly not because of the language or syntax itself--its despite it. I just find myself writing a lot less code and getting more accomplished. I look forward to being able to do the same in Ruby or Python someday.