JDBC 설치
Connector/J 5.1은 MySql 5 와 호환된다 MySql 5 버전은 Connector/J 2.0과 호환되지 않는다. - jdbc 다운 (http://dev.mysql.com/downloads/connector/j/5.1.html) - 압축을 풀고 mysql ... .jar 파일을 %JAVA_HOME%\jre\lib\ext 에 복사한다 - 환경변수 설정에서 classpath에 mysql ... .jar파일의 경로를 추가한다 - 그래야 Tomcat 실행시 %JAVA_HOME%\jre\lib\ext 폴더 내의 library 들이 톰캣 실행시 사용 될 수 있다.
웹개발/Java
2010. 10. 22. 15:49
자바스크립트 여러가지
//Using hasOwnProperty to build resilient object looping. Object.prototype.otherKey = "otherValue"; var object = { key: "value" }; for ( var prop in object ) { if ( object.hasOwnProperty( prop ) ) { assert( prop, "key","There should only be one iterated property." ); } } //XPath if ( typeof document.evaluate === "function" ) { function getElementsByXPath(expression, parentElement) { var results ..
웹개발/Javascript
2010. 9. 10. 16:33