본문 바로가기

반응형

기타-프로그래밍

(15)
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) : 모바일 기기의 파일 배포,..
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 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 선택 후 접속
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의..
Spring Boot 시작하기 Spring Boot는 무엇인가?Server내에서 독립적인 Spring Application을 비교적 간단한 설정 만으로 구동가능하게 해주는 구성 프레임웍이다. 간단한 Boot 예제목표 : Browser에서 hello JeongHoon, Kim 확인. git repository 생성$ git initInitialized empty Git repository in D:/springboot-note/GettingStart/.git/ Maven을 이용한 프로젝트 생성mvn -B archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DgroupId=com.test.app -DartifactId=my-test Hello.java 생성package ..
NoSuchElementException java.util에 보면 NoSuchElementException이 있습니다. 오늘 Tool만드는 중 Error가 나서 Note합니다. 보통 우리가 Collection 의 값을 가져올때 hasNext()를 사용합니다. 그런데 hasNext() 후 Next()를 이용하여 값을 가져오려 할 때 많이 Loop 내에 또 Loop를 돌려 hasNext() 할때에는 값이 있다가 Next 할때 값이 없는 상태가 되어 버리면 NoSuchElementException 이 발생합니다. 한마디로 다음의 요소가 없어서 Exception이 난 것입니다. Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in ..

반응형