클라우드 APM 서비스https://www.appdynamics.com/
출처 : http://m.blog.naver.com/sojumonika/220167629971
gitHub에서 소스 내려받기git clone https://github.com/angular/quickstart my-proj cd my-proj.git 디렉토리 삭제rm -rf .git // non-Windows rd .git /S/Q // windows로컬 git 레포지토리 생성 및 commitgit init git add . git commit -m "Initial commit"내 gitHub에 올리기(gitHub에 미리 repository생성되어 있어야 됨)git remote add origin git push -u origin master
mysql 서버를 실행 후 아래와 같이 명령하여 mysql에 접속. 비밀번호를 입력하라고 나오는데 아직 비밀번호가 없으므로 엔터를 치고 접속> mysql -u root -p mysql 다음 명령으로 비밀번호 설정mysql> update user set pasword = password('비밀번호') where user = 'root'; 이제 권한테이블 업데이트하고 빠져나온다mysql> flush privileges; mysql> quit아래와 같이 다시 접속하면서 비밀번호를 입력한다.> mysql -u root -pEnterpassword :
> Using Spring Data Repositories with Spring Boot> Entity 생성, Reposiotry생성, JPA설정 등 기본 사항은 이전 정리글 참고http://leeyongjin.tistory.com/entry/SpringBoot > Abstracting Common Transactional Attributes into a Mapped Superclass> Transactional Entity Attributesid - the primary keyreferenceId - an external identifier; something portableversion - facilitates optimistic lockingcreatedBy - the user that create..
> Creating a Custom Spring Security Solutiomgithub : https://github.com/mwarman/spring-security-fundamentals.git> Components for a Custom Spring Security SolutoionSpring Security Dependency (Maven or Gradle)Entiry ModelData RepositoyrBusiness ServiceUser Details ServiceAuthentication ProviderSecurity Configuration > Spring Security Dependencyorg.springframework.bootspring-boot-starter-security >..
> Using the Gradle PMD Plugin for Static Code Analysis> plugin 추가 [build.gradle파일]apply plugin: 'pmd' pmd {toolVersion = '5.4.1' ruleSetConfig = rootProject.resources.text.fromFile('etc/pmd/ruleset.xml') ignoreFailures = true} > ruleset.xml 파일 생성 > build task 실행 > gradlew clean build 결과]* build/reports/pmd 디렉토리 및 결과물 생성됨 * 기존 build/reports/buildDashboard/index.html 에 PMD 리포트 페이지 링크 생성됨 * PMD 결과 ..
> Using the Gradle Checkstyle Plugin for Code Style Reporting> plugin 추가 및 설정apply plugin: 'checkstyle' checkstyle {toolVersion = checkstyleVersionconfig = rootProject.resources.text.fromFile('etc/checkstyle/rules.xml')} > rules.xml 파일 생성> build task 실행> gradlew clean build 결과>* 아래와 같이 build/reports/checkstyle 디렉토리 및 결과물 생성 * 기존 buildDashBoard/index.html 에 checkstyle report 페이지 링크 생성* 아래와 같이 che..
> Using the Gradle Jacoco Plugin for Unit Test Code Coverage Reporting> plugin 적용 및 설정 [build.gradle파일]apply plugin: 'java'apply plugin: 'eclipse'apply plugin: 'spring-boot'apply plugin: 'project-report'apply plugin: 'build-dashboard'apply plugin: 'jacoco' ext { guavaVersion = '19.0' jadiraVersion = '4.0.0.GA' swaggerVersion = '2.3.0' jacocoVersion = '0.7.5.201505241946'} jacoco {toolVersion = j..
> Introduction to Gradle Project and Build Reports> project-report plugin 적용. [build.gradle 파일]apply plugin: 'java'apply plugin: 'eclipse'apply plugin: 'spring-boot'apply plugin: 'project-report' > taskReport task 실행> gradlew clean taskReport * 위 결과 수행 후 아래와 같이 tasks.txt 파일(프로젝트 gradle task들에 대한 설명) 생성됨. 예) ------------------------------------------------------------All tasks runnable from root ..
- Total
- Today
- Yesterday