일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- restapi
- postman
- Database
- SpringInitializer
- IntelliJ
- Maven
- Developer
- install
- SpringSecurity
- oracle
- apache
- mssql
- RESTful
- 웹개발
- ojdbc
- sqldeveloper
- 스프링시큐리티
- development
- springboot
- tcping
- HATEOAS
- Tomcat #SpringFramework
- springboot #controller #jsp
- undefined
- Oracle11g
- 스프링부트 #springboot #project #Intellij
- 환경변수
- 스프링부트
- mysql
- Web
- Today
- Total
목록분류 전체보기 (49)
여백에 도장 찍기
개발자라면 알아두어야 할 Git Command에 대해 정리해보자. ○ Git Version & Status Check $ git --version git version 2.22.0.windows.1 $ git status ○ Git 시작하기 $ git init $ git clone 'git-repository-name' $ git add $ git commit -m 'commit-message' $ git push master origin $ git diff $ git merge $ git rebase ... ○ Git Branch 관련 # branch List $ git branch # Create branch $ git branch 'new-branch-name' # Change branch $ gi..
※ Git 설치 되어있고 GitHub 계정이 존재한다는 가정하에, GitHub에 내 Local에 존재하는 Project를 Share 해보자. 1. File > Settings > Version Control 1.1. Git 설치 디렉터리 넣어주기 1.2. GitHub 계정 넣어주기 2. VCS > Import into Version Control > Share Project on GitHub 3. 문제 없이 GitHub에 해당 프로젝트가 Share 되었다면 다음의 창을 볼 수 있다. 4. GitHub 나의 Repositories 에 가서 해당 프로젝트가 올라왔는지 확인해본다 :)
Mac 환경에서 가시성 뛰어난 shell 을 완성해보자. 설치 및 적용할 프로그램들은 다음과 같다. - iTerm2 - homebrew - zsh - oh my zsh 1. iTerm2 설치 https://www.iterm2.com/downloads.html 접속 > Download Stable Releases 2. zsh 설치 $ brew install zsh 2.1. oh my zsh 라는 zsh framework 설치 $ brew install curl $ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time. "SLF4J는 다양한 로깅 프레임워크(java.util.logging, logback, log4j)를 위한 단순 fasade 또는 추상화를 제공하며 이는 최종 사용자 배포시 원하는 로깅 프레임워크로 연결할 수 있다. " 간략하게 logging framework들에 대해 살펴보면, na..
Spring boot 에 mssql db를 mybatis 이용하여 연동하는 부분을 살펴보자. 1. pom.xml 에 dependency 추가. - mybatis와 sqlserver 관련 dependency를 추가하면 된다. org.mybatis.spring.boot mybatis-spring-boot-starter 1.3.2 com.microsoft.sqlserver sqljdbc4 4.0 2. Database 관련 Config를 추가한다. @Configuration @MapperScan( value="analysis.data.system.mapper") public class DatabaseConfig { public static final String MAPPER_LOCATION = "classpat..