flex 2 api보는법 API보는법 Eclipse에서 help-flex start page - 좌측중앙의 introductory video 를 클릭하면 Adobe사이트의 API페이지로 이동한다. (인터넷이 연결되어 있어야 함) 좌측메뉴 Resources 의 Flex 3 LiveDocs --> Flex ActionScript Language Reference http://livedocs.adobe.com/flex/3/langref/index.html IT기술/Flex 2008.11.19
flex 1 http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3email Adobe Flex Builder 3.0.1 Professional Eclipse English | Windows |338.8MB Plug-in 위 사이트에 접속하여 Eclipse plug-in을 다운 받고 설치한다. Eclipse 실행 - windows - open perspective - others... - flex development new - flex project 구구단 예제 flextest.mxml IT기술/Flex 2008.11.18
Struts2 2mb 이상 File Upload WEB-INF\classes폴더 생성 struts.properties 파일 생성 struts.multipart.maxSize=? IT기술/Flex 2008.11.18
struts2 file upload StrutsFileUpload.java package upload; import java.io.*; import com.opensymphony.xwork2.ActionSupport; public class StrutsFileUpload extends ActionSupport { private File upload;//The actual file private String uploadContentType; //The content type of the file private String uploadFileName; //The uploaded file name private String caption;//The caption of the file entered by user public String exec.. IT기술/Flex 2008.11.17
Struts 2 File Upload http://www.roseindia.net/struts/struts2/struts-2-file-upload.shtml Here is the full code of action class StrutsFileUpload.java package net.roseindia; import java.util.Date; import java.io.File; import com.opensymphony.xwork2.ActionSupport; public class StrutsFileUpload extends ActionSupport { private File upload;//The actual file private String uploadContentType; //The content type of the file p.. IT기술/Flex 2008.11.17
mvc ex package mvc; import java.io.IOException; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.Hashtable; import javax.naming.Context; import javax.naming.InitialContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; imp.. IT기술/Flex 2008.11.13
jstl ex src\tld(package)\Gugudan.java 파일 생성 package tld; public class Gugudan { public static String getGugu(String dan){ String gugu = ""; int d = Integer.parseInt(dan); for(int i=1;i 숫자를 입력하세요. ${elfunc:g(param.dan)} -----------------------------j s p------------------------------- 숫자를 입력하세요. ${elfunc:g(param.dan)} 음... IT기술/Flex 2008.11.12
jstl 설정법 JSTL 라이브러리 (jstl.jar, standard.jar) 다운로드 http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi Binaries 1.1.2.zip 다운로드 압축해제 후 lib폴더의 2개의 jar파일을 web-inf/lib에 import 시킨다 XALAN (xalan.jar) 다운로드 http://mirror.apache-kr.org/xml/xalan-j/binaries/ xalan-j_2_1-bin.zip 다운로드 압축해제 후 xalan.jar파일을 web-inf/lib에 import시킨다 IT기술/Flex 2008.11.12
struts2 설정법 **MVC패턴에서 Controller를 자동으로 생성해주는 Struts FrameWork를 배워보자. http://struts.apache.org/2.0.12/docs/tag-reference.html *파일다운로드 http://www.apache.org 사이트에 접속한다. 우측메뉴의 struts 클릭 Recent Releases 20 October 2008 - Struts 2.0.12 General Availability Release Struts 2.0.12 Blank Application only: struts2-blank-2.0.12.war (Also included in apps)(3mb) Documentation: struts-2.0.12-docs.zip (57mb) 두개 파일을 임의의 장소에.. IT기술/Flex 2008.11.12