컨텐츠 바로가기


이전 제품 보기

다음 제품 보기

FireStorm/DAO Architect Edition with Premium Support 적립금

() 해외배송 가능

FireStorm/DAO Architect Edition with Premium Support 기본 정보
판매가 (VAT포함) 재입고 알림 SMS
쿠폰적용가 원 ( 할인)
적립금
  • 0 (0%)
  • 무통장 결제시 적립금( %)
  • 카드 결제시 적립금( %)
  • 실시간 계좌 이체시 적립금( %)
  • 적립금 결제시 적립금( %)
  • 휴대폰 결제시 적립금( %)
제휴 적립금 네이버 마일리지 적립  
무이자할부
제조사 CodeFutures Software
원산지 www.codefutures.com
상품코드 P0000EKP
수량

updown

국내/해외배송
SNS 상품홍보

개인결제창을 통한 결제 시 네이버 마일리지 적립 및 사용이 가능합니다.

장바구니 담기 관심상품 등록 추천 메일 보내기

쇼핑 계속하기 바로 구매하기

상품상세정보

FireStorm/DAO Architect Edition

FireStorm/DAO Architect Edition is powerful and flexible Java persistence tool that allows new custom code generation templates to be developed and integrated with the FireStorm/DAO Studio environment. CodeFutures includes the source code of all the Enterprise Edition DAO options (JDBC DAO, EJB CMP DAO, Hibernate DAO, and Spring DAO) as part of the Architect Edition.

The code generation templates are written in standard Java so there is no need to learn a proprietary code generation template language as with other solutions. There is no limit on the number of custom DAO design templates can be developed – possibly using different DAO templates for different parts of the same application. Additional non-DAO custom code generation templates can also be developed and used with FireStorm/DAO. The custom code generation templates can be used with the Enterprise Edition.

FireStorm/DAO Architect Edition includes the source code for the each of the DAOs (JDBC DAO, EJB CMP DAO, Hibernate DAO, and Spring DAO). This allows FireStorm/DAO to be customized:

  • Optimize performance based on specific project requirements
  • Integrate more closely with existing development procedures and build environments, such as internal coding standards
  • Add environment-specific extra custom features such as caching, security, auditing, and clustering

FireStorm/DAO Architect Edition - Demonstration Video

Java Code Generator

Team Development using the Architect Edition

The maximum benefits of FireStorm/DAO are usually derived by a software development group using the Architect Edition to customize the DAO design template for its environment.

An experienced software developer within a software development team customizes the DAO template. Then any other programmers who want to develop a data persistence tier use the Enterprise Edition and the custom DAO template provided by the DAO architect.

The DAO templates in FireStorm/DAO Architect Edition can be customized to a project’s exact requirements: optimize performance, integrate more closely with existing build environments, and add environment-specific extra custom features such as caching, security, auditing, and clustering.

The benefits of using FireStorm/DAO Architect Edition with development teams includes:

  • The DAO architect has control over the code generated by all other developers using FireStorm/DAO Enterprise Edition, so they can benefit from the DAO architect's specialist expertise.
  • The DAO architect can ensure that programmers are strictly following coding standards/best practices. This benefit is important in large organizations with multiple development teams, or where there are multiple development projects, because it ensures a consistent approach to the common task of database access.
  • Multiple custom DAOs can be developed as required for different types of projects (for example, optimization for different databases)
  • Additional features can be added to the DAO templates by the DAO architect
  • FireStorm/DAO can be more closely integrated with existing development procedures (for example, special build system requirements, internal coding standards)
  • The Architect Edition can be used to address certain skill shortages – where the DAO expert can control the activities of less skilled developers. It is particularly useful for software developers with database skills that may not have sufficient Java experience to write Java persistence code from scratch.

Custom Code Generation

FireStorm/DAO™ Architect Edition allows custom code generation modules to be developed and integrated into the FireStorm/DAO product.

The FireStorm/DAO™ SDK provides two interfaces that must be implemented by user-defined code generation providers. These are the Provider and ProviderOptions interfaces.

Once the user-defined provider class has been developed it can be integrated with FireStorm/DAO™ by simply adding the class name to the firestorm-conf.xml file as in the following example:


com.mycompany.codegen.MyProvider

This code generation provider will now be available within the "Generate" menu in the FireStorm/DAO™ user interface and will also be available to the Ant code generation task.

The following syntax can be used to invoke a user-defined code generation provider using Ant:

home="${firestorm.home}"
src="${firestorm.home}/projects/myproject.xml"
provider="myprovider"
output="generated-code"
/>

Example of Code Generation Template

/*
* Copyright 2008 Code Futures Software, Ltd. All rights reserved.
*
* This is vendor code. Use is subject to license terms.
*
* Author: Andy Grove
* Date: 21-April-2008
* Time: 08:57:11
*
* Visit / for more information.
*/

package com.codefutures.firestorm.codegen.dao;

import com.codefutures.jingo.source.dom.JClass;
import com.codefutures.jingo.source.dom.JAttribute;
import com.codefutures.jingo.source.factory.SourceFactory;
import com.codefutures.firestorm.project.dom.TableDao;
import com.codefutures.firestorm.project.dom.TableDaoColumn;
import com.codefutures.firestorm.project.dom.PrimaryKey;
import com.codefutures.firestorm.api.CommonOptions;

public class GenTablePk
{
public static JClass generate(
TableDao dao,
CommonOptions config
)
{
JClass c = SourceFactory.createClass(
config.getDtoPackageName(),
dao.getJavaName()
+ DaoConst.PK_SUFFIX
);

c.setJavaDoc(
"This class represents the primary key of the "
+ dao.getSqlName()
+ " table."
);

c.addImport( "java.io.Serializable" );
c.addImplements( "Serializable");

PrimaryKey pk = dao.getPrimaryKey();

if (pk != null)
{
TableDaoColumn col<[/FONT>] = dao.getPrimaryKeyColumnList();
for (int i = 0; i col.length; i++)
{
JAttribute attr = c.createAttribute(
col<[/FONT>i].getJavaType(),
col<[/FONT>i].getJavaName()
);

c.createAccessorMethods( attr );
}

c.createConstructor( c.getAttributeList() );
}

DaoCodeGenHelper.createToStringMethod(
c,
dao.getPrimaryKeyColumnList()
);

return c;
}

}

Customer Testimonials

“FireStorm/DAO Architect Edition gives us full control and ownership over the code that is much preferred over other proprietary products. In our experience, most other DB mapping tools and products provide great productivity over the short term, but over the long term, the inability to control the generated JDBC introduces bugs that are very difficult to fix and maintain. Unnecessary workarounds are then used which contaminate our system's architecture. FireStorm/DAO will definitely stay part of our tool set within the foreseeable future!”
Kobus Steenekamp, Senior Java Developer, Discovery Health

“FireStorm/DAO is a great tool not only for rapidly prototyping, but also for doing production quality code. During code reviews and load testing, we have found that the code generated by FireStorm/DAO performs exceptionally well.
We have eliminated the concern of connections remaining open and each developer implementing persistence layers differently.”
Robert Peck, Lead Architect, Ahold USA

“FireStorm/DAO Architect Edition allows us complete control over the generated code mitigating any risks of changes in our application or the product. We were able to build upon the generated persistence layer and generate much of our client and business layer code. In some cases, we were able to generate up to 75% of the code leaving only business logic to program.
We like to joke that at the end of our 18-month project, we will have figured out how to generate the entire application. We would like to thank the FireStorm/DAO team for their outstanding support throughout our project.”
Matt Pearce, Technology Consultant, Ajilon Consulting

상품결제정보

고액결제의 경우 안전을 위해 카드사에서 확인전화를 드릴 수도 있습니다. 확인과정에서 도난 카드의 사용이나 타인 명의의 주문등 정상적인 주문이 아니라고 판단될 경우 임의로 주문을 보류 또는 취소할 수 있습니다.  

무통장 입금은 상품 구매 대금은 PC뱅킹, 인터넷뱅킹, 텔레뱅킹 혹은 가까운 은행에서 직접 입금하시면 됩니다.  
주문시 입력한 입금자명과 실제입금자의 성명이 반드시 일치하여야 하며, 7일 이내로 입금을 하셔야 하며 입금되지 않은 주문은 자동취소 됩니다.

배송 정보

  • 배송 방법 : 택배
  • 배송 지역 : 전국지역
  • 배송 비용 : 무료
  • 배송 기간 : 3일 ~ 7일
  • 배송 안내 : - 산간벽지나 도서지방은 별도의 추가금액을 지불하셔야 하는 경우가 있습니다.
    고객님께서 주문하신 상품은 입금 확인후 배송해 드립니다. 다만, 상품종류에 따라서 상품의 배송이 다소 지연될 수 있습니다.

교환 및 반품 정보

교환 및 반품이 가능한 경우
- 상품을 공급 받으신 날로부터 7일이내 단, 가전제품의
  경우 포장을 개봉하였거나 포장이 훼손되어 상품가치가 상실된 경우에는 교환/반품이 불가능합니다.
- 공급받으신 상품 및 용역의 내용이 표시.광고 내용과
  다르거나 다르게 이행된 경우에는 공급받은 날로부터 3월이내, 그사실을 알게 된 날로부터 30일이내

교환 및 반품이 불가능한 경우
- ESD(Electronic Software Distribution), 이메일로 설치key, 설치파일 또는 사용증서로 납품되는 제품의 경우는 제품 자체에 심각한 문제가 있는 경우를 제외하고는

  반품이 불가 합니다.

- 고객님의 책임 있는 사유로 상품등이 멸실 또는 훼손된 경우. 단, 상품의 내용을 확인하기 위하여
  포장 등을 훼손한 경우는 제외
- 포장을 개봉하였거나 포장이 훼손되어 상품가치가 상실된 경우
  (예 : 가전제품, 식품, 음반 등, 단 액정화면이 부착된 노트북, LCD모니터, 디지털 카메라 등의 불량화소에
  따른 반품/교환은 제조사 기준에 따릅니다.)
- 고객님의 사용 또는 일부 소비에 의하여 상품의 가치가 현저히 감소한 경우 단, 화장품등의 경우 시용제품을
  제공한 경우에 한 합니다.
- 시간의 경과에 의하여 재판매가 곤란할 정도로 상품등의 가치가 현저히 감소한 경우
- 복제가 가능한 상품등의 포장을 훼손한 경우
  (자세한 내용은 고객만족센터 Q&A게시판 또는 E-MAIL상담을 이용해 주시기 바랍니다.)

※ 고객님의 마음이 바뀌어 교환, 반품을 하실 경우 상품반송 비용은 고객님께서 부담하셔야 합니다.
  (색상 교환, 사이즈 교환 등 포함)

상품 사용 후기

상품의 사용후기를 적어주세요.

게시물이 없습니다

모두 보기 사용 후기 쓰기

상품 Q&A

상품에 대해 궁금한 점을 해결해 드립니다.

게시물이 없습니다

모두 보기 상품 Q & A 쓰기