Geek Articles

Categories

 

Subscribe

Daily Updates Subscribe geekarticles update via email Subscribe geekarticles update via RSS

 
J2SE Articles

  
134 Articles.    Previous Page   Page 3 of 7  Next Page   

Published on Thu, 31 Aug 2006 08:09:47 -0400    Read: 287 times
While the idea of mapping several names onto one Apache instance with VirtualHost directives is well known, what do you do when you're serving web apps with Tomcat? Satya Komatineni has both the code and the configs that you'll need to make this work....   Read Article.
Filed in: J2SE


Published on Thu, 24 Aug 2006 08:08:10 -0400    Read: 271 times
Where do you start when building a Java desktop application? All Java gives you by default is public static void main (String[]); it's up to you from there. Eclipse's Rich Client Platform (RCP) offers a tested design, commonly-needed widgets, a standardized component model, pervasive extensibility, and more. Wayne Beaton has an introduction to...   Read Article.
Filed in: J2SE


Published on Thu, 17 Aug 2006 08:04:41 -0400    Read: 170 times
Callisto, a bundle of optional plugins for Eclipse, now comes with a profiling tool called the Test Performance Tools Platform (TPTP). TPTP includes testing, tracing, performance monitoring, profiling, and static-code analysis tools. John Ferguson Smart offers this guided tour of how to use TPTP to speed up your apps....   Read Article.
Filed in: J2SE


Ant 1.7: using Antlibs  By onjava.com
Published on Thu, 10 Aug 2006 08:05:53 -0400    Read: 256 times
Most Java developers use Ant to do builds and are familiar with its core tasks. But Ant's tasks tend toward an undesirable coupling: everything important had to be a core task because it was hard to distribute new plug-in tasks. Fortunately, Ant 1.7's new antlibs feature makes it much easier to distribute and use new Ant tasks. In this article,...   Read Article.
Filed in: J2SE


Published on Thu, 03 Aug 2006 08:11:19 -0400    Read: 213 times
Java SE 6 (aka Mustang) brings with it a new set of improvements to the JDBC API for accessing databases. Improvements include support for the RowID interface, better exception handling, annotation-based queries, and (finally!) and end to the clumsy Class.forName() system of loading database drivers. In this article, Srini Penchikala tours the major...   Read Article.
Filed in: J2SE


Deploying Birt  By onjava.com
Published on Thu, 27 Jul 2006 08:06:36 -0400    Read: 361 times
If you have a need for generating or displaying reports, you may want to have a word with BIRT. The Business Intelligence and Reporting Tools project is an open source Eclipse effort to enable the creation and deployment of complex reports. Jason Weathersby shows you how to grind out reports and display them in web applications and RCP-based desktop...   Read Article.
Filed in: J2SE


What Is Geronimo?  By onjava.com
Published on Thu, 20 Jul 2006 08:06:09 -0400    Read: 220 times
Geronimo is Apache's open source, Java EE-compatible application server, based on a flexible system of interchangeable components. This makes it ideal for a wide range of enterprise deployments. In this article, Kunal Jaggi shows you how to get started with Geronimo....   Read Article.
Filed in: J2SE


Outsourcing Java Se  By onjava.com
Published on Thu, 13 Jul 2006 08:05:57 -0400    Read: 322 times
Many eyes are on Sun, awaiting the promised eventual open-sourcing of its Java SE implementation. But Daniel Steinberg has another idea: instead of open-sourcing Java, Sun should outsource it, so that it can be developed by parties more attuned to the needs and opportunities of cross-platform development....   Read Article.
Filed in: J2SE


Published on Thu, 29 Jun 2006 08:04:03 -0400    Read: 261 times
The popular Eclipse IDE's latest release, version 3.2, is the cornerstone of an ambitious release of ten Eclipse-branded projects on the same day. But what's in it for you? Ed Burnette takes a look at the new features in Eclipse's Java Development Tools and shows you how they'll make your development much easier....   Read Article.
Filed in: J2SE


Published on Thu, 22 Jun 2006 08:04:40 -0400    Read: 347 times
Database to XML and back again. If everyone's doing some or all of this, then shouldn't we write it once, get it right, and standardize? JDBC 3.0's WebRowSet offers a profound increase in power over the old ResultSet. Sharad Acharya shows you what's possible....   Read Article.
Filed in: J2SE


What Is Jetty  By onjava.com
Published on Thu, 15 Jun 2006 08:04:33 -0400    Read: 249 times
Of course Tomcat is the first Java application server you think of, but is it the right tool for every job? The open source Jetty serves up JSPs and servlets in just a fraction of the memory needed by other app servers and is designed for easy embedding in other applications and non-traditional Java environments. Ethan McCallum takes a look at the big...   Read Article.
Filed in: J2SE


Published on Thu, 08 Jun 2006 08:02:36 -0400    Read: 216 times
Eclipse RCP uses a popular plugin scheme for extending the capabilities of the core platform. Meanwhile, the Inversion of Control pattern is a popular means of having a runtime container provide an implementation of some needed service. Put them together and effectively, you're plugging in the implementation of your plugin. Riccardo Govoni shows...   Read Article.
Filed in: J2SE


Published on Thu, 01 Jun 2006 08:02:41 -0400    Read: 312 times
The Google Web Toolkit was the talk of JavaOne 2006, offering developers a way to create Ajax applications by writing Java and having the toolkit generate the client-side JavaScript, which can call back to Java servlets through an RPC-like call. Robert Cooper offers an initial tutorial to get you up and running with GWT....   Read Article.
Filed in: J2SE


Published on Fri, 26 May 2006 08:02:10 -0400    Read: 376 times
JavaOne 2006 left attendees with an incomplete answer to the big question: will Sun open source Java? The answer was better than a definite maybe, but not by much. Daniel Steinberg looks back at the conference, its mixed message, and its many successes outside of the general sessions....   Read Article.
Filed in: J2SE


Published on Thu, 18 May 2006 08:03:00 -0400    Read: 271 times
Dissatisfaction with entity beans as an "official" means of persisting Java objects to databases has prompted a number of "unofficial" approaches, such as the very popular Hibernate. Now EJB3 seems to have learned its lesson: its new Java Persistence API allows you to persist plain old Java objects (POJOs) with a minimum of fuss and just a few annotations....   Read Article.
Filed in: J2SE


Published on Thu, 11 May 2006 08:04:23 -0400    Read: 267 times
"Real-Time" Java doesn't mean "really fast," but it does mean "really predictable," and that's especially important in many fields where an unpredictable response time, usually caused by the Java Virtual Machine's garbage collector, can cost money or lives. Peter Mikhalenko looks at the Real-Time Specification for Java and Sun's first...   Read Article.
Filed in: J2SE


Published on Thu, 04 May 2006 08:04:07 -0400    Read: 208 times
Does your enterprise Java application need to store not only complex objects or documents but a history of changes to them? Many developers try to solve this problem with database wizardry, but it's probably a better option to hand the job over to a configuration management system that is built for the task. In this article, Swaminathan Radhakrishnan...   Read Article.
Filed in: J2SE


Published on Thu, 27 Apr 2006 08:04:40 -0400    Read: 200 times
Among Java SE 6's key features is the ability to mix scripting languages into Java code, thanks to the implementation of the JSR-223 spec. In this article, John Ferguson Smart takes a look at the spec and what it means for Java, and shows how to use Java 6's integrated Rhino implementation to call JavaScript from Java...and vice versa....   Read Article.
Filed in: J2SE


Published on Thu, 20 Apr 2006 08:03:20 -0400    Read: 330 times
You know how to open and use database connections for each user, but what about optimizing for many concurrent users? Rather than creating and destroying connections over and over again, established practice calls for use of a pool of connections that can be reused. Kunal Jaggi shows how to implement this strategy in Tomcat....   Read Article.
Filed in: J2SE


Published on Thu, 13 Apr 2006 08:02:48 -0400    Read: 322 times
Start with the idea of an object database, like db4o, which effortlessly persists arbitrary objects, even those with deep structures, into a database. Then mix in a little Hibernate. Now you can map objects to either the db4o database or a relational database. And as Jim Paterson shows, the db4o Replication System allows you to do some interesting things,...   Read Article.
Filed in: J2SE


134 Articles.    Previous Page   Page 3 of 7  Next Page   

Latest Articles

 

Popular Articles

  iBatis DAO

Sponsored Links

 
Last This page took 0.131502 seconds to load.