목록개발 (64)
차근차근
Window -> Properties General -> Editors -> File Associations 클릭 Add(File types) 클릭 -> *.js 입력 -> OK 클릭 *.js 클릭 -> 아래에 Add... 클릭 -> External programs 클릭 -> JS 입력 -> JScript Encoded File 클릭 -> OK클릭 아래에서 JavaScript File 클릭 후 Default 클릭 -> Apply aand Close클릭
project -> Properties 클릭 JavaScript -> Include Path -> Source -> Excluded -> Edit Add Multiple...(Exclusion patterns) -> js폴더위치 클릭 -> OK -> Finsh
톰캣 다운로드톰캣 다운로드 tomcat.apache.org/download-80.cgi Apache Tomcat® - Apache Tomcat 8 Software Downloads Welcome to the Apache Tomcat® 8.x software download page. This page provides download links for obtaining the latest versions of Tomcat 8.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions tomcat.apache.org Tomcat 8 클릭 zip 클릭 톰캣 z..
스프링 STS 윈도우 설치 spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io 4.10.0 - WINDOWS 64-BIT 클릭 spring-tool-suite-4-4.10.0.RELEASE-e4.19.0-win32.win32.x86_64.self-extracting.jar C:\..
참조 : cheese10yun.github.io/spring-oop-04/
//test 아래 자식노드의 select값을 초기화 $("#test").find("select").each(function(){ $(this).find("option:eq(0)")attr("selected",true); }); //test 아래 자식노드의 input값을 초기화 $("#test").find("input[name='testNameList']").each(function(){ if("a,b,c".indexOf($(this).val()) != -1){ $(this).remove(); } }); //같은 input배열에 중복값을 출력 var inputs = $("input[name='testNameList']"); var stored = []; $.each(inputs,function(k,v){ ..
1. kakao API키 발급 사이트 접속 developers.kakao.com/console/app 카카오계정 로그인 여기를 눌러 링크를 확인하세요. accounts.kakao.com 2. kakao API Daum 이미지 가져오기 html 파일 Document kakaoImgApiInsert(); function kakaoImgApiInsert(){ //https://developers.kakao.com/tool/rest-api/open/get/v2-search-image $.ajax({ type: "GET", url: "https://dapi.kakao.com/v2/search/image", headers: { 'Authorization':'KakaoAK 발급받은 REST API키 삽입' // 'K..
1. 사용자 인증 API키 값 받기 구글 APIs 사이트 접속 console.developers.google.com/apis Google Cloud Platform 하나의 계정으로 모든 Google 서비스를 Google Cloud Platform을 사용하려면 로그인하세요. accounts.google.com 2. 사용자 인증 정보 만들기 3.youtuYouTube API 사용 .html 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949..
1. 리얼타임 데이터 베이스 생성 2. 파이어베이스에 앱 추가 3. 테스트 html *마지막에 해당 CDN 정보 삽입 후 테스트 파이어베이스 실시간으로 웹페이지 연동하기 Firebase + Realtime + Web A Paragraph. 데이터 쓰기 //파이어베이스에 등록한 앱에 CDN클릭 후 해당정보 가져와서 삽입 var firebaseConfig = { apiKey: "", authDomain: "", databaseURL: "", projectId: "", storageBucket: "", messagingSenderId: "", appId: "", measurementId: "" }; // Initialize Firebase firebase.initializeApp(firebaseConfig);..
1. 파이어베이스 데이터 베이스 생성 2. 접속 KEY생성 3.자바 소스 작성 -pom.xml dependencies 추가 com.google.firebase firebase-admin 6.12.1 -Key json파일 패키지에 이동 -BtsFireBase.java package egovframework.com.firebase; import java.io.File; import java.io.FileInputStream; import com.google.api.core.ApiFuture; import com.google.auth.oauth2.GoogleCredentials; import com.google.cloud.firestore.DocumentReference; import com.google.cl..