일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- resource
- profile
- ssh
- maVen
- import
- lsof
- xargs
- Eclipse
- vscode
- Mac
- Source
- netsh
- context
- IntelliJ
- plugin
- Windows 10
- VirtualBox
- 줄바꿈 문자
- Quartz
- grep
- web.xml
- GIT
- Windows
- 단축키
- tomcat
- JavaScript
- port
- bash
- 네트워크
- find
- Today
- Total
목록Dev (274)
develog
.gitignore##### macOS.DS_Store##### git.git/##### gradle.gradle/build/**/.gradle/**/build/##### maventarget/**/target/##### intellij.idea/*.iml### VisualStudioCode ###.vscode/*!.vscode/settings.json!.vscode/tasks.json!.vscode/launch.json!.vscode/extensions.json!.vscode/*.code-snippets##### eclipse.settings/.classpath.project**/.settings/**/.classpath**/.project##### Nodenode_modules/package-lock..
git status 실행시 신규 추가된 파일이 보이지 않을 때 $ git status Untracked files: src/com/mycorp/task/ git status --untracked-files=all 으로 실행 $ git status --untracked-files=all Untracked files: src/com/mycorp/task/MyTask.java git config 에 등록 # config 에 등록 $ git config --global status.showuntrackedfiles all # config 등록 내용 확인 $ git config --list status.showuntrackedfiles=all # config 에서 삭제 $ git config --global --..
revert change one file git checkout HEAD -- revert changes all git checkout . remove untracked files and directories git clean -fd stackoverflow.com/questions/1146973/how-do-i-revert-all-local-changes-in-git-managed-project-to-previous-state How do I revert all local changes in Git managed project to previous state? I have a project in which I ran git init. After several commits, I did git statu..
방법1 implementation ('org.springframework.boot:spring-boot-starter-web') { exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' } 방법2 implementation ('org.springframework.boot:spring-boot-starter-web') { exclude module: 'spring-boot-starter-tomcat' }
프로젝트 root 하위에 lib 폴더를 만들고 jar 파일들을 넣어둔다 build.gradle dependencies 추가 compile files 또는 compile fileTree 사용 compile files('lib/ojdbc6.jar') compile fileTree(dir: 'lib', include: ['*.jar'])
compile 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5' @Bean public Hibernate5Module hibernate5Module() { Hibernate5Module hibernate5Module = new Hibernate5Module(); hibernate5Module.configure(Hibernate5Module.Feature.FORCE_LAZY_LOADING, true); return hibernate5Module; }