Tag Archives: XML

XBRL Terminology

Disclaimer: Don’t Know the Source Abstract attribute an abstract attribute appears on items definitions in schemas; it’s possible values are “true” and “false”; “true” indicates that the item must not appear in instance documents; abstract elements (elements for which abstract … Continue reading

Posted in What is? | Tagged , , , , , | Leave a comment

Identifying Workloads for the Cloud

Identifying workloads to move to the cloud can be tricky. You have dozens or hundreds of apps running in your organization, and now that you’ve seen the operational efficiencies and agility available to you in the cloud, you’re tempted to … Continue reading

Posted in XML, XPath | Tagged , , , , , , , , , | 3 Comments

What is Hibernate?

Overview of Hibernate Defined:           Hibernate is an object-relational mapping (ORM) solution for the Java language. Hibernate is an object-relational mapping tool (ORM) that allows for persisting Java objects in a relational database.           Not a Java/SQL code generation tool … Continue reading

Posted in Hibernate | Tagged , , , , , , , , | 1 Comment

Hibernate Architecture

Hibernate Architecture SessionFactory A threadsafe (immutable) cache of compiled mappings for a single database. A factory for Session and a client of ConnectionProvider. Might hold an optional (second-level) cache of data that is reusable between transactions, at a process- or … Continue reading

Posted in Hibernate | Tagged , , , , , , , | 1 Comment

Introducing and Integrating Hibernate

Hibernate provides two alternative configuration files: a standard Java properties file called hibernate.properties and an XML formatted file called hibernate.cfg.xml. If both the hibernate.properties and hibernate.cfg.xml files are found in the application classpath, then hibernate.cfg.xml overrides the settings found in … Continue reading

Posted in Hibernate | Tagged , , , , , , , , | Leave a comment

Writing Custom Task in Ant

Writing Own Task Create a Java class that extends org.apache.tools.ant.Task For each attribute, write a setter method that is public void and takes a single argument Write a public void execute() method, with no arguments, that throws a BuildException — … Continue reading

Posted in Ant, How To..., Java | Tagged , , , , , , , , , , , , , | 4 Comments

Introduction to ANT

Introduction to ANT Apache Ant is a powerful way to convert your developmental structures to deployment structures. It is declarative and all the command line tasks used for deploying an application are represented by simple XML elements. A Java-based build … Continue reading

Posted in Ant, Java, What is? | Tagged , , , , , , , , , , | 5 Comments

Built-in Tasks in Ant

Java™ Application Development on Linux® – Free 599 Page eBook Enterprise Java Virtualization: Understanding the TCO Implications InfoWorld’s Java IDE Comparison Strategy Guide: Java Essential Training Apache Jakarta Commons: Reusable Java™ Components Enabling Rapid ROI: With Java™ – Based Business … Continue reading

Posted in Ant, Java | Tagged , , , , , , , , , , , , , , | 3 Comments

ANT Overview, Structure & Basics (Build File)

ANT Overview, Structure & Basics (Build File) Each Project will have a build file (build.xml) Default name for a build file is build.xml Root element must be the ‘project’ element The ‘default’ attribute is required Specifies the default target to … Continue reading

Posted in Ant, Java | Tagged , , , , , , , , , , , , , , | 4 Comments

Install phpMyAdmin on Ubuntu 11.10 or Ubuntu 11.04 or Ubuntu 10.10 or Ubuntu 10.04 LTS

phpMyAdmin is an open source tool written in PHP intended to handle the administration of MySQL with the use of a Web browser. It can perform various tasks such as creating, modifying or deleting databases, tables, fields or rows; executing … Continue reading

Posted in How To..., Ubuntu | Tagged , , , , , , , , , , , , | 1 Comment