You are here
Home > Posts tagged "apache velocity"

Apache Velocity Generate DAO

Melanjutkan artikel Apache Velocity Create Template DAO, pada pembahasan kali ini juga akan membutuhkan referensi dari artikel CRUD Console dengan Java karena kita akan men-generate DAO dari template yang sudah kita buat di artikel Apache Velocity Create Template DAO. Dalam proses men-generate DAO ini kita akan menggunakan POJO sebagai data informasi untuk men-generate DAO.

Apache Velocity Create Template DAO

In computer software, a data access object (DAO) is an object that provides an abstract interface to some type of database or other persistence mechanism. By mapping application calls to the persistence layer, DAO provide some specific data operations without exposing details of the database. This isolation supports the Single

Apache Velocity Generate POJO

Ideally speaking, a POJO is a Java object not bound by any restriction other than those forced by the Java Language Specification; i.e. a POJO should not have to 1). Extend prespecified classes, as in [crayon-67f40cc492804202819750/] 2). Implement prespecified interfaces, as in [crayon-67f40cc492816682588821/] 3). Contain prespecified annotations, as in [crayon-67f40cc49281b800852522/] sumber: wiki 185

Apache Velocity Hello World

Velocity is a Java-based template engine. It permits anyone to use a simple yet powerful template language to reference objects defined in Java code. When Velocity is used for web development, Web designers can work in parallel with Java programmers to develop web sites according to the Model-View-Controller (MVC) model, meaning

Top