At line 3 changed 1 line. |
If you've just downloaded AppFuse and want to setup it up on your machine, your best bet is the QuickStart Guide. Once you've got everything setup, the tutorials below are a great resource for learning how to develop with AppFuse. |
If you've just downloaded AppFuse and want to setup it up on your machine, your best bet is the [QuickStart Guide|AppFuseQuickStart_ko]. Once you've got everything setup, the tutorials below are a great resource for learning how to develop with [AppFuse|AppFuse_ko]. |
At line 9 changed 1 line. |
As of 1.6.1, you can generate most of the code covered in these tutorials. If you're using Struts+Hibernate, you can general all of it. For Spring and WebWork, it was too much trouble to write the installers so you will need to manually configure the Controllers and Actions. This was mainly due to the fact that I'm not using XDoclet for these web frameworks and the limitations of using Ant as an installer. The AppGen tool which generates the code is covered in Part I. |
As of 1.6.1, you can generate most of the code covered in these tutorials. If you're using Struts+Hibernate, you can general {{all}} of it. For Spring and WebWork, it was too much trouble to write the installers so you will need to manually configure the Controllers and Actions. This was mainly due to the fact that I'm not using XDoclet for these web frameworks and the limitations of using Ant as an installer. The __AppGen__ tool which generates the code is covered in [Part I|CreateDAO_ko]. |
At line 11 changed 1 line. |
There's also an AppFuse Generator project that has similar functionality to AppGen. |
There's also an [AppFuse Generator|the_appfuse_generator_ko] project that has similar functionality to AppGen. |
At line 13 changed 1 line. |
__Part I:__ [AppFuse에서 새로운 DAO들과 Object들을 작성하기|CreateDAO] - Java Object(table을 나타내는)와 이 object들을 데이타 베이스에 저장 시키는 Java 클래스들을 만드는 방법. |
__Part I:__ [Creating new DAOs and Objects in AppFuse|CreateDAO_ko] - Java Object(table을 나타내는)와 이 object들을 데이타 베이스에 저장 시키는 Java 클래스들을 만드는 방법. |
At line 15 changed 1 line. |
__Part II:__ [새로운 Managers 작성하기|CreateManager] - 데이타베이스 계층(DAOs)과 웹 계층(Struts Actions)과의 연결을 위한 Business Facades 클래스를 만드는 방법. |
__Part II:__ [Creating new Managers|CreateManager_ko] - 데이타베이스 계층(DAOs)과 웹 계층(Struts Actions)과의 연결을 위한 Business Facades 클래스를 만드는 방법. |
At line 17 changed 5 lines. |
__Part III: (Struts)__ [Actions 클래스 들과 JSP 작성하기|CreateActions] - Action 클래스들과 JSP 페이지들을 만드는 방법. |
* __<span style="color: green">Spring:</span>__ [Spring Controller와 JSP작성하기|SpringControllers] |
* __<span style="color: blue">WebWork:</span>__ [WebWork Action 클래스 들과 JSP작성하기|WebWorkActions] |
* __<span style="color: purple">JSF:</span>__ [JSF Bean들과 JSP작성하기|JSFBeans] |
* __<span style="color: orange">Tapestry:</span>__ [Tapestry페이지들과 Template작성하기|TapestryPages] |
__Part III: (Struts)__ [Creating Struts Actions and JSPs|CreateActions_ko] - Action 클래스들과 JSP 페이지들을 만드는 방법. |
* __<span style="color: green">Spring:</span>__ [Creating Spring Controllers and JSPs|SpringControllers_ko] |
* __<span style="color: blue">WebWork:</span>__ [Creating WebWork Actions and JSPs|WebWorkActions_ko] |
* __<span style="color: purple">JSF:</span>__ [Creating JSF Beans and JSPs|JSFBeans_ko] |
* __<span style="color: orange">Tapestry:</span>__ [Creating Tapestry Pages and Templates|TapestryPages_ko] |
At line 23 changed 5 lines. |
__Part IV: (Struts)__ [Validation 과 List 페이지 추가하기|ValidationAndList] - 성과 이름을 필수 항목으로 하는 유효성 검사 로직을 personForm 에 추가하고 데이타 베이스에 있는 person 레코드들을 보여주는 화면을 추가합니다. |
* __<span style="color: green">Spring:</span>__ [Validation과 List페이지 추가하기|ValidationAndListSpring] |
* __<span style="color: blue">WebWork:</span>__ [Validation과 List페이지 추가하기|ValidationAndListWebWork] |
* __<span style="color: purple">JSF:</span>__ [Validation과 List페이지 추가하기|ValidationAndListJSF] |
* __<span style="color: orange">Tapestry:</span>__ [Validation과 List페이지 추가하기|ValidationAndListTapestry] |
__Part IV: (Struts)__ [Adding Validation and List Screen|ValidationAndList] - 성과 이름을 필수 항목으로 하는 유효성 검사 로직을 personForm 에 추가하고 데이타 베이스에 있는 person 레코드들을 보여주는 화면을 추가합니다. |
* __<span style="color: green">Spring:</span>__ [Adding Validation and List Screen|ValidationAndListSpring_ko] |
* __<span style="color: blue">WebWork:</span>__ [Adding Validation and List Screen|ValidationAndListWebWork_ko] |
* __<span style="color: purple">JSF:</span>__ [Adding Validation and List Screen|ValidationAndListJSF_ko] |
* __<span style="color: orange">Tapestry:</span>__ [Adding Validation and List Screen|ValidationAndListTapestry_ko] |
At line 29 added 3 lines. |
<div class="note"> |
NOTE: You can generate the files created in these tutorials by using [AppGen|AppGen_ko]. If you experience problems - you should be able to compare your results to what AppGen does. To do this, cd into extras/appgen, and run "ant test-detailed". This will create an "appfuse-appgen" project, generate the code in these tutorials, and test everything. |
</div> |
At line 33 added 1 line. |
!!Thomas Gaudin's Excellent AppFuse Tutorials |
At line 31 changed 1 line. |
다른 관련 글들: |
Thomas Gaudin has put together a couple of detailed and easy-to-follow tutorials on his site. |
At line 33 changed 2 lines. |
* [나의 개발 환경 세팅 방법|DevelopmentEnvironment]. |
* [Eclipse로 AppFuse 어플리케이션 개발하기|AppFuseEclipse]. |
* [Handling Dates with AppFuse and Struts|http://www.thogau.net/tutorials/date/] |
* [Building a persisted dynamic web tree|http://www.thogau.net/tutorials/tree/] |
* [Flexi-Float Sitemesh decorator for AppFuse|http://www.thogau.net/howto/flexi-float/] |
* [Lucene Integration with Spring and Hibernate|http://www.thogau.net/howto/lucene/] |
|
! 다른 관련 글들: |
|
* 내가 [Development Environment|DevelopmentEnvironment]을 셋업하는 방법. |
* [Developing your AppFuse application in Eclipse|AppFuseEclipse]. |