본문 바로가기 메뉴 바로가기

Grand_J

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Grand_J

검색하기 폼
  • 전체!!차렷 (357)
    • Java & Spring & SpringBoot (103)
    • DB & Redis (35)
    • DevOps (28)
    • React & Vue (27)
    • GitHub & Gitlab (11)
    • NodeJS (14)
    • JSP & JavaScript (47)
    • Kendo UI (15)
    • Wordpress (6)
    • HELLO!! (4)
    • etc (65)
  • 방명록

Java & Spring & SpringBoot (103)
GCM을 이용하여 iOS Push 보내기!

GCM iOS Push 보내기! String apiKey = ""; // 발급받은 kEY String GCM_Token = regId; // Registration ID// Json 데이터 세팅String notification = "{\"sound\":\"default\",\"badge\":\"2\",\"title\":\"\",\"body\":\""+ contents +"\"}";String contentsData = "{\"원하는데이터\":\""+원하는데이터"}";String messageToSend = "{\"to\":\"" + GCM_Token + "\",\"notification\":" + notification + ",\"data\":" + contentsData + "}";try {// UR..

Java & Spring & SpringBoot 2017. 12. 27. 10:21
localhost, ip 도메인 연결 방법

localhost, ip 도메인 연결 방법 C:\Windows\System32\drivers\etc 위치로 이동 hosts 파일 메모장으로 오픈 오픈하면 아래와 같은 내용이 나옴 # Copyright (c) 1993-2009 Microsoft Corp.## This is a sample HOSTS file used by Microsoft TCP/IP for Windows.## This file contains the mappings of IP addresses to host names. Each# entry should be kept on an individual line. The IP address should# be placed in the first column followed by the corr..

Java & Spring & SpringBoot 2017. 12. 18. 09:24
log4j level 설정 방법 및 level 별 설명

log4j level 설정 방법 및 level 별 설명 위에서 아래로 갈수록 level이 낮아진다고 생각하면 됨. ALL – The ALL has the lowest possible rank and is intended to turn on all logging. > 모든 로깅. TRACE – The TRACE Level designates finer-grained informational events than the DEBUG > 세밀 DEBUG – The DEBUG Level designates fine-grained informational events that are most useful to debug an application. > 디버깅. INFO – The INFO level designat..

Java & Spring & SpringBoot 2017. 11. 24. 15:31
web.xml & context-application.xml 사용 내용 정리

파악한 것만 내용 정리 ----------------------------------------------------------------------------------------------------------------web.xml File_Upload contextConfigLocation /WEB-INF/classes/config/context-application.xml org.springframework.web.context.ContextLoaderListener File_Upload org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/classes/config/context-application.x..

Java & Spring & SpringBoot 2017. 10. 12. 10:01
이클립스(eclipse) classpath 설정

프로젝트 오른쪽 클릭 > build path > configure build path 클릭하면 아래 화면이 뜸 Source 탭에서 Java Resources 폴더 생성 및 Class 파일 빌드 위치 변경 가능함 Add Folder로 Java Resources에 생성할 폴더 세팅 보통 기본 src폴더가 있는데 삭제하고 새로이 만들어 주면 에러 대부분 생성 가능함. 끗

Java & Spring & SpringBoot 2017. 9. 28. 11:37
eclipse Update SVN Cache 개선방법

eclipse Update SVN Cache 때문에 로딩걸려서 빠르게 하는 법 찾아봄 첫번째 방법 1. Window->Preferences->Team->SVN->Performance 보통 Preferences에서 Performance 입력하면 바로 나옴 Enable SVN statuse chache를 해제해야함 2. Enable SVN statuse chache를 해제하려면 우선 Compute deep outgoing state를 해제 3. 후에 Enable SVN statuse chache 해제 두번째 방법 1. 해당 프로젝트 선택 후 오른쪽 클릭 > team > cleanup 클릭 말그대로 클린시켜주는 것임 나는 두번째 방법으로 하니까 개선되었음 끗!!!!!

Java & Spring & SpringBoot 2017. 9. 20. 10:27
톰캣 에러로그 At least one JAR was scanned for TLDs yet contained no TLDs 해결방법

정보: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time. tomcat folder> conf > logging.properties 하단에 org.apache.jasper.compiler.TldLocationsCache.level = FINE org.apache.jasper.servlet..

Java & Spring & SpringBoot 2017. 9. 12. 14:37
Tomcat Memory 톰캣 메모리 늘리기 catalina.bat file

Tomcat Memory 톰캣 메모리 늘리기 catalina.bat file OS가 window경우 서비스 등록이아닌 톰캣 bin 안에 startup.bat로 할경우 메모리 사이즈 늘리는 법임 catalina.bat 파일 오픈 rem setlocalset JAVA_OPTS=-Xms2048m -Xmx2048m -XX:PermSize=512m -XX:MaxPermSize=512m setlocal 주석처리 끗!!!!!

Java & Spring & SpringBoot 2017. 9. 12. 14:35
이클립스 프로젝트명 변경

프로젝트 폴더 안 .progect 내 name옵션 값 수정하면 됨. 수정할 명칭

Java & Spring & SpringBoot 2017. 9. 1. 10:49
JAVA(jdk)설치(환경변수 설정)

JAVA(jdk)설치(환경변수 설정) 1. jdk 설치 http://www.oracle.com/technetwork/java/javase/downloads/index.html?ssSourceSiteId=ocomkr 2. 환경변수 세팅내컴퓨터 > 오른쪽마우스 > 속성 > 고급 시스템 설정 > 고급 탭 > 환경 변수(시스템 속성 -> 고급 -> 환경 변수)시스템 변수에 새로 만들기 눌러 변수 추가 해준다. 변수명 = CLASSPATH변수값 = C:\Program Files\Java\jdk\lib (JDK 설치 경로) 변수명 = JAVA_HOME변수값 = C:\Program Files\Java\jdk (JDK 설치 경로) 시스템 변수에 path를 찾아 편집 클릭%JAVA_HOME%\bin;입력 후 저장 3. ..

Java & Spring & SpringBoot 2017. 8. 16. 10:36
이전 1 ··· 4 5 6 7 8 9 10 11 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • 국제반점
  • kendo grid
  • 오라클 DB 링크
  • 스쿠터 전국 일주
  • Docker
  • 스쿠터 여행
  • 보성 여행
  • 송내역 카페
  • 초원사진관
  • 군산 여행
  • 군산 가볼만한곳
  • 담양 여행
  • 리니지m
  • 송내 룸카페
  • 남자 혼자 여행
  • 나래바이크
  • 은파호수공원
  • 영광 여행
  • 송내역 룸카페
  • 돌장갑
  • 윈드스크린
  • vscode
  • 인터바이크
  • 고흥 여행
  • 군산 게스트하우스
  • 제주도 스쿠터 여행
  • 베스파LX
  • 전국 일주 여행
  • 송내 카페
  • 남자 혼자 국내 여행
more
«   2025/07   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바