전체 글
-
리눅스 자원 정보 찾기 (CPU / CPU Core / 물리 CPU / CPU당 물리코어 수 / Memory )Linux 2017. 5. 29. 22:14
0. CPU 정보 확인> cat /proc/cpuinfo 1. CPU 코어 전체 개수 확인> grep -c processor /proc/cpuinfo 2. 물리 CPU 수 확인> grep "physical id" /proc/cpuinfo | sort -u | wc -l 3. CPU당 물리 코어 수 확인 > grep "cpu cores" /proc/cpuinfo | tail -1 - 메모리 정보 확인 cat /proc/meminfo | grep MemTotal PS ) HP-UX는 #machinfo 하면 정확하게 나옴
-
jsonp 사용법JavaScript 2017. 5. 29. 22:14
타브라우저에 대한 연동에는, jsonp가 필요하다. $(function(){ $("#btn").click(function(){ $.ajax({ //호출이 필요한 타 도메인URL url : "http://localhost/index.jsp", //jsonp방식으로 값을 받겠다. dataType : "jsonp", //서버측에서 request.getparameter를 하여 받기위한 jsonp의 name //빼주게되면 default request.getParameter("callback") 으로 받게된다. jsonp : "callback", async: false, // 동기화? 비동기화? //success는 일반 json 방식과 같음 success : function(data){ console.log("re..
-
브라우저 뒤로가기 버튼 막기jQuery 2017. 5. 29. 22:13
$(document).ready(function() { var checkPage = null; if (document.referrer) { checkPage = true; } if(checkPage){ history.pushState(null, null, location.href); window.onpopstate = function(event) { if (confirm("정말 이동하시겠습니까?") == true){ //확인 history.back(); }else{ //취소 history.pushState(null, null, history.go(2)); return; } } } });
-
-
JPA & SAMPLE PROJECTJPA 2017. 5. 29. 22:11
JPA 공부할겸 기본동작 구조 샘플링 코드에 대해서 공유합니다. GIT가시면 받을수있어요.SAMPLE PROJECT URL = https://github.com/chr3125/jpa_test JPA 서술 동영상 URL = http://serviceapi.rmcnmv.naver.com/flash/outKeyPlayer.nhn?vid=D27B798D516DFB5674A7F9BF709FB4025E42&outKey=V12487e3810f7f167f7ef0da87f37d557eeab09173e9a6baeb6690da87f37d557eeab&controlBarMovable=true&jsCallable=true&skinName=tvcast_whiteJPA(JAVA™ PERSISTENCE API)Java EE(Java..
-
Mysql 호스트 접근 오류 날 경우DB 2017. 5. 28. 13:43
'GRANT' 명령을 이용하면 쉽게 사용자 추가 및 권한 설정이 가능합니다. * 일반 사용자 추가 mysql> grant all privileges on dbuser.* to dbuser@1.1.1.1 identified by 'password' with grant option; * 특정 이름의 데이터베이스에 대한 모든 권한을 가지는 사용자 추가 mysql> grant all privileges on `dbuser_%`.* to dbuser@1.1.1.1 identified by 'password' with grant option; >> ERROR 1130 오류 코드 ERROR 1130 (00000): Host 'x.x.x.x' is not allowed to connect to this MySQL se..