일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트 #springboot #project #Intellij
- undefined
- 스프링시큐리티
- Maven
- IntelliJ
- 웹개발
- Web
- postman
- 환경변수
- Developer
- oracle
- SpringSecurity
- Oracle11g
- install
- HATEOAS
- 스프링부트
- Tomcat #SpringFramework
- springboot #controller #jsp
- sqldeveloper
- mysql
- Database
- apache
- RESTful
- ojdbc
- development
- SpringInitializer
- mssql
- restapi
- tcping
- springboot
- Today
- Total
여백에 도장 찍기
1. Apache Maven 을 다운로드 받는다. https://maven.apache.org/download.cgi Maven – Download Apache Maven Downloading Apache Maven 3.6.1 Apache Maven 3.6.1 is the latest release and recommended version for all users. The currently selected download mirror is http://mirror.apache-kr.org/. If you encounter a problem with this mirror, please select another mirror maven.apache.org ~/Downloads 하위로 이동하여 apache-..
JOIN 방법에는 다음과 같은 종류가 있다. - Cross Join - Equi Join - Self Join - Outer Join 각각에 대해서 학습해보자. 1. Cross Join (등가 조인) : Cartesian Product(카사디안 곱) 값을 얻을 때 사용된다. 테이블간의 상호 연결될 수 있는 모든 경우의 수를 산출하여 나타낸다. 예를 들어 A테이블에 튜플 3개, B테이블의 튜플 4개 존재한다면 12가지의 경우의 수를 모두 보여준다. 자주 사용되지 않으며 쉽게 말해 조인이라고 하기 어렵다. 2. Equi Join (내부 조인) - > 가장 일반적으로 사용하는 Join 방법으로 equi join, inner join, natural join 등이 존재한다. - equi join : WHERE ..
- 에러 Oracle SQL Developer 에서 DB 접속을 생성할 때 'undefined' 에러 발생. - 원인 : download 받은 sqldeveloper의 sqldeveloper\jdbc\lib 디렉터리 하위에 ojdbc8.jar 파일이 존재한다. 하지만, 접속하고자 하는 서버는 이전 버전이라 호환이 안된다. - 해결 방법 : sqldeveloper\jdbc\lib\ojdbc8.jar 을 삭제하고 objec6.jar 파일을 다운로드 받아 넣어주면, 제대로 DB 접속 생성이 되는것을 확인할 수 있다.
1. Oracle 11g Client 설치 - 다운받은 win32_11gR2_client.zip 압축 풀기. - 압축 풀고 client > setup.exe 실행 2. DB 접속을 위한 설정 접속하기 위해서는 먼저 DB 설정을 위한 디렉터리 및 파일 설정을 진행해야 한다. D:\app\서주민\product\11.2.0\client_1 밑에 /network/admin 폴더 디렉터리를 생성하고 해당 폴더 안에 DB 설정 관련 파일을 생성한다. tnsnames.ora TESTDEV= (DESCRIPTION= (ADDRESS= (PROTOCOL=TCP) (HOST=remote_host_api) (PORT=1521) ) (CONNECT_DATA= (SERVER=dedicated) (SERVICE_NAME=TEST..
HATEOAS: Hypermedia As a The Engine Of Application State 사용방법 1. pom.xml 에 HATEOAS 관련 dependency 추가 org.springframework.boot spring-boot-starter-hateoas 2.1.0.RELEASE 2. 테스트 코드를 작성해보자. import org.springframework.hateoas.ResourceSupport; public class Customer extends ResourceSupport { private String customerId; private String customerName; private String companyName; public Customer() { } public ..
Environment Mac OS X IntelliJ IDEA Maven 3.3 Spring boot 2.1.6 MySQL 8.0.16 설치 참조 :: https://jum-dev.tistory.com/79 Spring boot 에서 MySQL 연동해보자. 1. pom.xml 에 관련 dependency를 추가. org.mybatis.spring.boot mybatis-spring-boot-starter 2.0.0 mysql mysql-connector-java 8.0.15 2. application.properties 파일에 DB connection 관련 정보를 추가해본다. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.data..
1. MySQL 다운로드 > https://www.mysql.com/downloads/ 접속 > MySQL Community Edition 다운로드 > MySQL Community Server 클릭 2. MySQL Client tool인 Workbench 도 추가로 설치하자, > https://dev.mysql.com/downloads/workbench/ MySQL :: Download MySQL Workbench Download MySQL Workbench Please report any bugs or inconsistencies you observe to our Bugs Database. Thank you for your support! dev.mysql.com 3. 환경 변수 설정 $ echo 'e..
개발자라면 알아두어야 할 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..