본문 바로가기

반응형

전체 글

(202)
Maven 명령어 정리 Dependancy 정보 갱신mvn install Jar file 생성하기mvn package Architype 생성mvn archetype:generate Dependancy Tree 보기mvn dependency:tree Spring Boot 실행하기mvn spring-boot:run
MADP EMM 개념 정리 MADP(Mobile Enterprise Application Platform)- 여러 장치에서 모바일 어플리케이션을 쉽게 디자인, 개발, 테스트, 배포, 유지 관리 할 수 있는 플랫폼https://blogs.aca-it.be/madp-blog-series-part1/ EMM (Enterprise Mobility Management)- 기업 환경에서 사용되는 스마트폰, 태블릿 및 기타 모바일 장치의 포괄적인 보안 및 관리 솔루션 MDM (Mobile Device Management) : 단말 정보와 사용자 정보 및 단말 상태 관리MAM (Mobile Application Management) : 모바일 앱 관리 및 배포MCM (Mobile Content Management) : 모바일 기기의 파일 배포,..
To 부정사의 생략 all you have to do is sacrifice certain items to get more points to get it. 이 문장에서 sacrifice는 동사원형인 것 같은데.. is 도 동사이고 그러면 is sacrifice 중간에 to가 생략 된 건가요? All you have to do is (to) take care of my dog. 주격보어로 to부정사가 오고 특히 주어에 do동사가 쓰일 때 to를 생략할 수 있습니다.
Mobile Acronym 모바일 두문자어 MEAP : Mobile Enterprise Application PlatformMADP : Mobile Application Development PlatformMCAP : Mobile Consumer Application PlatformMDM : Mobile Device ManagementOSMU : One Source Multi UseEMM : Enterprise Mobility ManagementSFA : Sales Force Automation ODS : Out Door SalesVID : Video IDentificationMAM : Mobile Application ManagementOSS : Open Source SoftwareB2E : Business To EmployeeB2C : Bus..
GCP에 SCP 접속하기 1. WinSCP를 다운받는다.2. 새 사이트에서 파일 프로토콜을 SCP로 설정하고 GCP의 외부 IP를 호스트 이름에 입력한다.3. Putty 연결 시 만들었던 사용자 이름을 입력한다.4. 고급으로 가서 SSH>인증에서 Putty연결 시 만들어 두었던 개인키 파일을 지정한다.5. 연결.
GCP Putty 연결하기 1. GCP의 Compute Engine에서 VM 인스턴스 생성2. gcloud 설치3. C:\Users\**UserName**\.ssh\.google_compute_engine.pub 확인4. Putty Key Generator에서 Key Load5. Key Comment에서 사용할 User 이름 넣기6. Public Key, Private Key 저장7. GCP에 공개키 등록8. Putty에 **user**@**외부IP주소 입력9. Putty에 SSH>Auth>PrivateKey 입력부분에 Private Key 선택 후 접속
git 명령어 정리 https://git-scm.com/downloads 에서 git 설치 Git Bash를 연다. KimJeongHoon@user-PC MINGW32 ~$ git config --global user.name "JeongHoonKim" KimJeongHoon@user-PC MINGW32 ~$ git config --global user.email "devkjh@gmail.com" 로컬 저장소 만들기KimJeongHoon@user-PC MINGW32 ~$ mkdir boot KimJeongHoon@user-PC MINGW32 ~$ cd boot KimJeongHoon@user-PC MINGW32 ~/boot$ git initInitialized empty Git repository in C:/Users/Ki..
Spring Boot를 이용한 Spring Security 시작 하기 https://spring.io/guides/gs/securing-web/#scratch Maven Build 만들기mkdir -p src/main/java/hello pom.xml 생성 비보호 WebApplication 생성src/main/resources/templates/home.htmlsrc/main/resources/templates/hello.html Classpath에 Spring Security 추가pom.xml에 아래 추가 org.springframework.boot spring-boot-starter-security Security Configuration Java File 생성src/main/java/hello/WebSecurityConfig.java WebSecurityConfig의..

반응형