참고: http://developer.android.com/guide/topics/resources/available-resources.html


Animation Resources

Define pre-determined animations.
Tween animations are saved in res/anim/ and accessed from the R.anim class.
Frame animations are saved in res/drawable/ and accessed from the R.drawable class.
Color State List Resource
Define a color resources that changes based on the View state.
Saved in res/color/ and accessed from the R.color class.
Drawable Resources
Define various graphics with bitmaps or XML.
Saved in res/drawable/ and accessed from the R.drawable class.
Layout Resource
Define the layout for your application UI.
Saved in res/layout/ and accessed from the R.layout class.
Menu Resource
Define the contents of your application menus.
Saved in res/menu/ and accessed from the R.menu class.
String Resources
Define strings, string arrays, and plurals (and include string formatting and styling).
Saved in res/values/ and accessed from the R.stringR.array, and R.plurals classes.
Style Resource
Define the look and format for UI elements.
Saved in res/values/ and accessed from the R.style class.
More Resource Types
Define values such as booleans, integers, dimensions, colors, and other arrays.
Saved in res/values/ but each accessed from unique R sub-classes (such as R.boolR.integer,R.dimen, etc.).



  1. Open Tomcat’s conf/web.xml file back up and find the JspServlet again.

  2. Add the following init parameter, which tells the Servlet to use Apache Ant with the JDK

    compiler to compile JSPs instead of the Eclipse compiler.

    1
    2
    3
    4
    <init-param>
        <param-name>compiler</param-name>
        <param-value>modern</param-value>
    </init-param>
    cs
  1. Tomcat doesn’t have a way to use the JDK compiler directly, so you must have the latest version of Ant installed on your system. You also need to add the JDK’s tools.jar file and Ant’s ant.jar and ant-launcher.jar files to your classpath. The easiest way to do this is to create a bin\setenv.bat file and add the following line of code to it (ignore new lines here), replacing the file paths as necessary for your system.

    set "CLASSPATH=C:\path\to\jdk8\lib\tools.jar;C:\path\to\ant\lib\ant.jar; C:\path\to\ant\lib\ant-launcher.jar"

    Of course, this applies only to Windows machines. For non-Windows environments, you should instead create a bin/setenv.sh file with the following contents, replacing the file paths as necessary for your system:

    export CLASSPATH=/path/to/jdk8/lib/tools.jar:/path/to/ant/lib/ant.jar: /path/to/ant/lib/ant-launcher.jar 


1. Selenium 설치 - 자동으로 브라우저를 키고 켜준다 

Selenium 설치 

pip install selenium 

2. Python  가상환경 설치:

필자의 다른글 참조

**(선택사항)

필자는 Python IDE로  Pycharm 을 사용 중이지만 이것은 입맛에 따라 변경 가능

IDE 대표적으로 Eclipse + Pydev 플러그인 , Visual Studio 2013 + Python Extension

텍스트 편집기로는 Sublime text (멀티 플랫폼 지원), emacs (리눅스 및 OSX 환경) 가 있다.


이 정도만 설치하면 Django Test-Driven Development 를 위한 환경세팅은 완료된다 (찹 쉽죠잉?)


'Python > Django' 카테고리의 다른 글

파이썬 가상환경 virtualenvwrapper 설정  (0) 2015.01.29
django 서버 포트번호 바꾸기 및 외부 접속 허용  (1) 2015.01.29
django 설치  (0) 2015.01.29
선 확인 해야할것: 
mysql 인코딩 처리 (여기 참조)

스프링에서 한글을 인식시키위해서 XML 설정에 아래와 같은 값을 집어 넣어준다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<filter>       
    <filter-name>CharacterEncodingFilter</filter-name>       
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>      
    <init-param>           
        <param-name>encoding</param-name>           
        <param-value>UTF-8</param-value>        
    </init-param>       
    <init-param>          
        <param-name>forceEncoding</param-name>        
           <param-value>true</param-value>      
    </init-param>
</filter>
<filter-mapping>       
<filter-name>CharacterEncodingFilter</filter-name>    
   <url-pattern>/*</url-pattern>
</filter-mapping>
cs

참고자료: 
http://ultteky.egloos.com/10488541


세션 데이터 베이스에 저장하기


세션 처리를 통해 로그인 처리 가능



+ Recent posts