전체 글

박정수가 공부한 자료를 남기기 위한 블로그
dev/기타

jconsole 사용법

jcosole 을 사용하기 위해선 java 를 실행시킬때, 몇가지 옵션을 추가하여야 한다. 사진에서 처럼 4가지 옵션을 추가했다. jconsole을 사용하기 위해서 추가한 4가지 옵션 -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Djava.rmi.server.hostname=10.20.2.60 jconsole 이 접근하기 위해 9999 포트를 할당했고, 해당 ip는 알아서 설정하면 된다. jconsole 의 위치는 자신이 jdk를 설치한 곳에 bin에 있다. 실행방법은 아주 단순하다. ip와 포트를 입력하고 해당 ..

영어공부

CSS Navigation Bar

Navigation Bars Having easy-to-use navigation is important for any web site. With CSS you can transform boring HTML menus into good-looking navigation bars. 사용하기 쉬운 네비게이션을 가지는 것은 어느 웹사이트 에서나 가장 중요하다. css로 지루한 html 메뉴를 좋아 보이는 네비게이션 바로 바꾸는 것이 가능하다. Navigation Bar = List of Links A navigation bar needs standard HTML as a base. In our examples we will build the navigation bar from a standard HTML li..

영어공부

CSS Opacity / Transparency

The opacity property specifies the opacity/transparency of an element. opacity 속성은 요소의 투명도와 불투명도를 명시한다. Transparent Image The opacity property can take a value from 0.0 - 1.0. The lower value, the more transparent: 투명한 이미지 opacity 속성은 0.0 부터 1.0 까지의 값을 가질수 있고, 값이 납아질수록 좀더 투명해진다. Note: IE8 and earlier use filter:alpha(opacity=x). The x can take a value from 0 - 100. A lower value makes the elemen..

jeongsu
Park_jeong_su