Create a Hibernate application that is managed by JBoss AS
in Java added by swati, 1 day ago application hibernate jboss mapping
Developers will be introduced to Hibernate and learn to build Java classes and map files from scratch. They will also learn to reverse engineer the database schema into Java classes and Hibernate mapping files and build a web application that will be able to interact with the Hibernate POJOs which they will later deploy to JBoss AS.
comment save reportCustomize Page Management in Liferay Portal 5.2 Systems Development
in Java added by swati, on 1/11/2009 CMS JSR 286 Java Liferay Portals Struts
In this article by Jonas Yuan, developers will learn to employ features of page management. They will also learn how to use communities and layout pages efficiently.
comment save reportDeveloping Web Applications using JavaServer Faces [pdf]
in Java added by nirajam, on 9/5/2009 Java NetBeans Open source beginner tutorials
The tutorial explains how NetBeans can help us easily develop web applications that take advantage of the JavaServer Faces framework.
comment save reportUsing RPC-Style Web Services with J2EE
in Java added by admin, on 6/1/2008 intermediate j2ee rpc webservice
Web Services provide functionality to the Internet, and are seen as the wave of the future. In this article, Martin Bond explains how to use Web Services protocols to join J2EE application components with any other software that supports those protocols. This excerpt is from Chapter (Day) 20, from Teach Yourself J2EE in 21 Days, second edition, by Martin Bond, et. al. (Sams, 2003, ISBN: 0672325586)
comment save reportSyntactic Comparison of Java and C/C++
in Java added by admin, on 13/12/2007 intermediate language syntax
Throughout this two-part series we'll endeavor into comparing the syntax of two of the most popular programming languages while heavily pointing out the similarities and differences. Needless to say, I won't claim that one is better than the other. The main focus should be on learning both up to an intermediate level from which we can grow later on.
comment save reportHow to Program Google Android
in Java added by admin, on 20/11/2007 android framework intermediate mobile
So you saw the Android announcement and decided you wanted a piece of that US$10million in prize money huh? In the week since the SDK was released more than 4,300 people have joined the Android support forum posting more than 4,000 messages between them.
comment save reportFinding Elements by Attributes in a DOM Document Using XPath
in Java added by admin, on 18/11/2007 advanced examples
XPath is an expression language for selecting nodes in an XML file. This example adds to those examples by demonstrating the ability to select elements based on their attributes.
This example demonstrates some common uses of expressions that use attributes; for more information on XPath, see the specification at http://www.w3c.org/TR/xpath. In the example, the result of an XPath expression is shown next to the expression; the numbers are ids of elements in the sample file shown at the end of the example.
Creating a sorted Set
in Java added by admin, on 18/11/2007 beginner tutorials examples
A sorted set is a set that maintains its items in a sorted order. Inserts and retrievals are more expensive in a sorted set but iterations over the set is always in order.
comment save reportTaming Tiger: Concurrent Collections
in Java added by admin, on 6/11/2007 advanced concurrency queue
Moving beyond Map, Collection, List, and Set: John Zukowski discusses the new library release in the Tiger release of the J2SE platform and what it provides: a set of utilities commonly needed in concurrent programs. If you are interested in optimizing multithreaded access to your collections, you've come to the right place.
comment save reportGetting Started with Java Web Development in Eclipse and Tomcat
in Java added by admin, on 27/10/2007 beginner tutorials jsp servlet
This is the first part of a series of Java Web development tutorials. It is intended to warm you up by introducing two fundamental Java web components, JSP and Servlet, and helping you prepare your development and deployment environments for the next steps.
comment save reportIntroduction to the Spring framework
in Java added by admin, on 27/10/2007 framework intermediate
Since the first version of this article was published in October, 2003, the Spring Framework has steadily grown in popularity. It has progressed through version 1.0 final to the present 1.2, and has been adopted in a wide range of industries and projects. In this article, I'll try to explain what Spring sets out to achieve, and how I believe it can help you to develop J2EE applications.
comment save reportConditionals, Expressions and Other Java Operators
in Java added by admin, on 25/10/2007 beginner tutorials
In our last article we left off with Operators. Since then a strange time fluctuation has occurred, and that is exactly where we pick up. So keep reading to learn about exotic things like conditionals, expressions, and more.
comment save reportJava Statements
in Java added by admin, on 25/10/2007 beginner tutorials loop
In this article, we'll continue explaining Java statements. Statements aren't exactly complicated once you grasp the concept. Indeed, many statements have counterparts -- of a sort -- in real life.
comment save reportSudoku Solver
in Java added by admin, on 25/10/2007 game intermediate sudoko
The Sudoku puzzle consists of a grid of 9x9 cells. This 81-cell grid is further subdivided into nine subgrids of 3x3 cells. A few of the cells are filled with a single digit between 1 and 9 (the givens). To solve the puzzle, the empty cells must be filled in such a way that every 9-cell row, column, and subgrid contains each of the digits between 1 and 9.
comment save reportJava Timer Class
in Java added by admin, on 23/10/2007 beginner tutorials timer
This creates an object that can be used like a stopwatch for wrapping blocks of code in timers.
comment save report