블로그 이미지

calendar

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
  • total
  • today
  • yesterday
2015. 6. 29. 09:30 개인적인지식&취미

http://blog.naver.com/PostView.nhn?blogId=lcran&logNo=220400831153&redirect=Dlog&widgetTypeCall=true

'개인적인지식&취미' 카테고리의 다른 글

유용한 프로그램 이름  (0) 2013.08.13
erd 그리는 툴  (0) 2013.05.31
개인취미용 하드웨어 개발툴킷(아두이노)  (0) 2012.08.09
posted by 천상의날개
2015. 6. 15. 14:01 Database관련/MYSQL

기존 sql (2001 번부터 1000개 얻어옴)


- select * from test where limit 2000,1000;

풀테이블 스켄함.


- select * from test where 2000<no limit 1000;

(no에 인덱스가 걸렸을때 인덱스 스켄 )

posted by 천상의날개
2015. 5. 28. 17:46 was관련/Jboss

wildfly-8.2.0.Final\standalone\configuration\standalone.xml  파일에
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990"/> 부분  포트 번호 변경

'was관련 > Jboss' 카테고리의 다른 글

jboss(wildFly) 8.2 jdbc oracle driver 설정하기.  (0) 2015.05.28
posted by 천상의날개
2015. 5. 28. 17:41 was관련/Jboss
  1. ${EAP_HOME}/modules/system/layers/base 폴더에 \oracle\jdbc\main 폴더를 만듬
  2. 생성한 폴더에 jdbcDriver(ojbdc14.jar) 카피
  3. modul.xml 파일 생성후 내용은 아래와 같이 설정
    <module xmlns="urn:jboss:module:1.3" name="oracle.jdbc">
        <resources>
            <resource-root path="ojdbc14.jar"/>
        </resources>
        <dependencies>
            <module name="javax.api"/>
            <module name="javax.transaction.api"/>       
        </dependencies>
    </module>
  4. jboss-cli.bat 파일 실행
  5. connect localhost:9900         
    입력후 엔터(기본 manage 포트는 9990인데 해당 포트는 다른프로그램이 점유하고 있어서 9900으로 변경하였음)
  6. /subsystem=datasources/jdbc-driver=oracle:add(driver-name=oracle,driver-module-name=oracle.jdbc,driver-class-name=oracle.jdbc.driver.OracleDriver)
    입력후 엔터
  7. {"outcome" => "success"} 문구가 나오면 성공한것임.

'was관련 > Jboss' 카테고리의 다른 글

jboss(wildFly) 8.2 manage 포트변경  (0) 2015.05.28
posted by 천상의날개
2015. 4. 9. 10:12 참조싸이트

burp suite

'참조싸이트' 카테고리의 다른 글

스프링시큐리티 적용참조  (0) 2020.05.28
과실주 담그는법  (0) 2012.05.10
안드로이드 참조  (0) 2011.04.29
json 정렬및 유효성 체크  (0) 2011.03.20
괜찮은 note/메모 프로그램들  (0) 2011.01.10
posted by 천상의날개
2015. 2. 9. 10:27 JAVA언어

----- web.xml -----

<context-param>

<param-name>upload.dir</param-name>

<param-value>c:/aa/</param-value>

</context-param>

 

----- java source -----

HashMap contextMap = new HashMap();

getServletContext().getInitParameter("upload.dir"));

Enumeration contextParams = getServletContext().getInitParameterNames();
     while (contextParams.hasMoreElements()) {
         String paramName = "" + contextParams.nextElement();
         contextMap.put(paramName, getServletContext().getInitParameter(paramName));
     }
 config.setContextParam(contextMap);

 

posted by 천상의날개
2014. 6. 3. 11:52 Database관련/MYSQL
ALTER TABLE employee MODIFY employee_no bigint NOT NULL AUTO_INCREMENT ;

'Database관련 > MYSQL' 카테고리의 다른 글

limit 튜닝  (0) 2015.06.15
접속, 리눅스 원격 연결, 데이터베이스, 유저 명령어 정리  (0) 2012.06.04
mysql 파티션 구현  (0) 2011.10.13
erwin logic 한글 참조싸이트  (0) 2010.04.02
erwin mysql comment script  (2) 2010.03.23
posted by 천상의날개
2014. 5. 28. 08:48 카테고리 없음

이클립스의 window->preferences->maven 에서 download repository index updates onstartup을 체크해줘야 검색이 가능해 진다.

posted by 천상의날개
2014. 5. 28. 08:37 maven

{userhome}\.m2\repository 에 내용을 삭제후 maven 프로젝트를 새로 생성한다.

예 : C:\Users\Administrator\.m2\repository

posted by 천상의날개
2014. 1. 18. 17:20 JAVA언어/applet
자바스크립트에서 자바 메소드 콜
posted by 천상의날개