Notice
Recent Posts
Recent Comments
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- elastic search
- Gradle
- Angular2
- SBT
- Spring Batch
- Spring
- hdfs
- elasticsearch
- hadoop
- Java
- apache storm
- Clean Code
- 스프링 배치
- Spring XD
- design pattern
- 인텔리J
- Hbase
- spark
- 도메인주도설계
- 제주
- Linux
- Storm
- DDD
- hibernate
- 엘라스틱서치
- docker
- nginx
- Spring Boot
- intellij
- scala
Archives
- Today
- Total
욱'S 노트
JCodeModel로 클래스 생성하기 본문
반응형
JCodeModel은 쉽게 클래스 소스를 생성할 수 있게 도와준다.
아래와 같이 단 3줄의 코딩으로도 간단하게 클래스 소스를 생성할 수 있다. 무작정 따라해보자.
@Test
public void testCreateClass() throws JClassAlreadyExistsException, IOException {
JCodeModel codeModel = new JCodeModel();
codeModel._class("net.daum.domaingen.TestClass");
codeModel.build(new File("/Users/devsun/dev/projects/domain-generator/src/test/java"));
}
생성된 소스는 다음과 같다.
package net.daum.domaingen;
public class TestClass {
}
반응형
'Programming > JCodeModel' 카테고리의 다른 글
JCodeModel 필드 선언하기 (0) | 2015.01.07 |
---|
Comments