Main Menu
Home Articles Directory Submit Popular Site Top Rated Site - Programming - Database - Management - Software Testing and Quality Assurance - Approaches, Process, Methods New Links RSS/Atom
Sponsors



  Main  |  Submit New Article  

  Popular articles (top10)  |  Top rated articles (top10)  |  Category List  

Main  arrow  Programming  arrow  Java  (585)


Sort by:   Title ( Title (A to Z) Title (Z to A)) Date ( Date (Old Links Listed First) Date (New Links Listed First)) Rating ( Rating (Lowest Score to Highest Score) Rating (Highest Score to Lowest Score)) Popularity ( Popularity (Least to Most Hits) Popularity (Most to Least Hits))
Articles currently sorted by: Title (A to Z)


Visit   Better JPA, Better JAXB, and Better Annotations Processing with Java SE 6    Last Update 2007/9/19 5:41
Category  Programming  arrow  Java  :  Programming  arrow  XML  :  Approaches, Process, Methods  arrow  Software Architecture
Description
Recently released Java SE (Standard Edition) 6 brings greater convenience and greater usability to several portions of the Java programming language and platform. In particular, Java SE 6 makes it easier for Java developers to apply JAXB (Java Architecture for XML Binding) and annotations processing to their development efforts, including Java Persistence API (JPA). In this article, you will learn how to take advantage of Java SE 6 support for JAXB and annotations processing to make deployment of JPA-based applications easier, especially for application deployers who may lack familiarity with the underlying Java code. Along the way, a few additional new Java SE 6 features will be demonstrated as well.

Hits: 17  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Big data analysis with Hadoop MapReduce    Last Update 2011/1/21 12:17
Category  Programming  arrow  Java  :  Database  arrow  NoSQL
Description
Apache Hadoop is currently the premier tool used for analyzing distributed data, and like most Java™ 2.0 technologies, it's built to scale. Get started with Hadoop's MapReduce programming model and learn how to use it to analyze data for both big and small business information needs.

Hits: 17  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Binding XML to Java    Last Update 2006/9/14 7:29
Category  Programming  arrow  Java  :  Programming  arrow  XML
Description
Manipulating XML data easily and efficiently in Java remains an important problem. Numerous approaches to XML binding exist in the industry, including DOM, JAXB, XML Beans, Castor, SDO and so on. In this article we will explore how the Eclipse Modeling Framework, EMF, solves the XML binding problem in a number of interesting ways, and we'll compare that to the alternatives.

Hits: 53  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   BlazeDS and JMS for PHP Developers, Part 2 Popular articles    Last Update 2010/3/3 15:33
Category  Programming  arrow  Java  :  Programming  arrow  PHP  :  Programming  arrow  Tools  :  Programming  arrow  Flex/Flash
Description
Part 2 in this series discusses how to integrate PHP and Java with two other methods. The first method—bridging—allows you to use Java objects from PHP, exposing another method of placing messages on JMS queues from PHP through Java. The second method of integration is using Streaming Text Orientated Messaging Protocol (STOMP), another protocol you can use to communicate with the ActiveMQ implementation of JMS. When ActiveMQ receives the message, it places it on the JMS queue, and the Adobe Flex application receives the message.

Hits: 715  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Bridging Internal and External Software Quality with Sonar and JaCoCo    Last Update 2011/5/31 17:27
Category  Programming  arrow  Java  :  Software Testing and Quality Assurance  :  Programming  arrow  Tools
Description
This article discusses the differences between internal and external software quality and how to perform the software quality assessment using Sonar and JaCoCo tools.

Hits: 45  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Build a dynamic organization tree using GWT and RESTful Web services    Last Update 2010/1/26 15:45
Category  Programming  arrow  Java  :  Programming  arrow  Platforms  arrow  Web Client  :  Approaches, Process, Methods  arrow  Software Architecture  :  Programming  arrow  Platforms  arrow  Services / Microservices
Description
This article shows you how to use GWT Tree widgets to display an organizational structure of a company, and how to implement an RPC proxy to integrate with RESTful Web services that provide organizational data and employee data. The article also discusses a lazy loading strategy to ensure a faster start up, to reduce the data download time, and to minimize memory usage.

Hits: 59  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Build a RESTful Web service using Jersey and Apache Tomcat    Last Update 2009/10/14 6:32
Category  Programming  arrow  Java  :  Programming  arrow  Tools  :  Programming  arrow  Platforms  arrow  Services / Microservices
Description
Representational state transfer (REST) was introduced in early 2000 by Roy Fielding's doctoral dissertation. However, in the Java™ community, it was not standardized until the JSR 311(JAX-RS) specification was finalized in 2008. The first release of its reference implementation is even later. In this article, I introduce Jersey, which is the reference implementation of JSR 311, by describing its essential APIs and annotations. I'll also show you how you can smoothly transfer from servlet-style services to RESTful services by integrating Jersey into Apache Tomcat.

Hits: 153  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Build an Ajax application using Google Web Toolkit, Apache Derby, and Eclipse, Part 1    Last Update 2007/2/22 6:21
Category  Programming  arrow  Java  :  Programming  arrow  Tools  :  Programming  arrow  Platforms  arrow  AJAX
Description
Google Web Toolkit (GWT) is a major step forward in the creation of dynamic Java™Script applications that run in users' Web browsers. Using GWT, developers can design the user interface (UI) and event model using familiar Java techniques while GWT does the hard work of making the code friendly for all the major browsers. Learn the basics of GWT in this first article in a series, including how GWT lets you create an Asynchronous JavaScript + XML (Ajax) application and still write your code in the Java language. Discover how to create and run a small sample GWT application -- a hot new Web 2.0 business called Slicr, which sells pizza online.

Hits: 143  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Build an Ajax application using Google Web Toolkit, Apache Derby, and Eclipse, Part 3    Last Update 2007/2/22 6:27
Category  Programming  arrow  Java  :  Programming  arrow  Tools  :  Programming  arrow  Platforms  arrow  AJAX
Description
In the last two articles in this series, you've discovered how to create a simple Web application using the Google Web Toolkit (GWT) and the Apache Derby relational database. Part 1 focused on using GWT to build the front end for a pizza delivery system called Slicr. In Part 2, you got a demonstration of the creation of a relational database using Derby, and a bare-bones demonstration of a mechanism for converting the database rows to Java™ objects. Now it gets interesting! In this third article, find out how to get the client and server talking to each other. You'll use the Remote Procedure Call (RPC) framework within GWT to make getting data off the server almost as simple as making a Java method call.

Hits: 71  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Build an Ajax application using Google Web Toolkit, Apache Derby, and Eclipse, Part 4: Deployment    Last Update 2007/2/28 8:11
Category  Programming  arrow  Java  :  Programming  arrow  Platforms  arrow  Web Server  :  Programming  arrow  Configuration Management / DevOps  :  Programming  arrow  Tools  :  Programming  arrow  Platforms  arrow  AJAX
Description
In the past three articles in this series, you've built a simple but functional Web application using the Google Web Toolkit (GWT). In this article, you'll use Apache Tomcat as your example servlet container, because it's both widely used and available at no cost. Other servlet containers will behave similarly. You'll often be deploying to an existing server; but if not, the links in the Resources section at the end of this article point you to the Tomcat download location. If you're running the Microsoft® Windows® operating system, Tomcat has a binary installer for Windows that's relatively simple to use. If you're on a Mac or a UNIX® system, there's a compiled version that you can extract and place in a convenient location (/usr/local is common); after setting a few environment variables, you're good to go.

Hits: 120  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)



« [1] 4 5 6 7 8 (9) 10 11 12 13 14 [59] » 
Practical
Methods & Tools
RSS 2.0
Twitter
Contact
THEME_VALIDXHTML    THEME_VALIDCSS

Copyright (c) 2007-2013 Martinig & Associates | Methods & Tools Software Development Magazine | Privacy Policy
Software Development Tools | Software Development Articles | Software Development Directory | Software Development Videos
Software Development Jobs | Software Development News | Software Development Books
Software Development Blogs | Software Development Conferences