πŸ“š ν”„λ‘œμ νŠΈ/2021-06

개발 ν™˜κ²½ μ„€μ •ν•˜κΈ°

cliche-2 2021. 6. 4. 01:23
728x90

 

BackEnd Tools ( SpringBoot - Eclipse/STS )

JDK Java SE 11

β€» jdk 버전 μ°Έκ³  https://parkcheolu.tistory.com/174

 

 μ„€μΉ˜ ν›„ ν™˜κ²½ λ³€μˆ˜ μ„€μ • (μ‹œμŠ€ν…œ 속성 - ν™˜κ²½ λ³€μˆ˜)

 

 1 μ‹œμŠ€ν…œ λ³€μˆ˜ μΆ”κ°€

 λ³€μˆ˜ 이름: JAVA_HOME

 λ³€μˆ˜ κ°’: jdk bin 폴더 경둜

 2 PATH λ³€μˆ˜ νŽΈμ§‘:  jdk bin 폴더 경둜 μΆ”κ°€

 

ν”„λ‘¬ν”„νŠΈμ—μ„œ μžλ°” 버전 확인 (jdk8 κΈ°μ€€)

 

 

 

Eclipse Java EE

μ„€μΉ˜ ν›„ Help - Eclipse Marketplace μ—μ„œ STS ν”ŒλŸ¬κ·ΈμΈ μΆ”κ°€

 

λ˜λŠ”

STS 직접 μ„€μΉ˜

Spring Boot STS-ST4.10.0

https://medium.com/hgmin/windows-10%EC%9A%A9-sts4-%EC%84%A4%EC%B9%98-7d2e1507280b

 

 

β€» jdk μ„€μ •

μ„€μ •ν•œ java 버전에 λ§žλŠ” JREsλ₯Ό λͺ»μ°ΎλŠ” 경우
JRE νƒ€μž…μ€ Standard VM으둜 ν•˜κ³ , home 디렉터리 μ§€μ •

 

 

 

β€» UTF-8 인코딩 μ„€μ •

 

 

 


FrontEnd Tools (Vue.js - Atom)

 

Vue.js

1 Node.js μ„€μΉ˜ https://nodejs.org/ko/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

 

2 Vue μ„€μΉ˜

μ£Όμ†Œμ°½μ— cmd μž…λ ₯ν•˜λ©΄ ν•΄λ‹Ή μœ„μΉ˜μ—μ„œ λ°”λ‘œ μ‹€ν–‰ κ°€λŠ₯

 

# μŠ€ν”„λ§ ν”„λ‘œμ νŠΈ μƒμœ„ 폴더에 Vue μ„€μΉ˜
npm i -g @vue/cli

 

 

Atom

 

 

A hackable text editor for the 21st Century

At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it.

atom.io

μ‚¬μš©ν•œ ν”ŒλŸ¬κ·ΈμΈ

language-vue

atom-beautify

autoclose-html


DB

 

Oracle XE 11g-64bit 

https://www.oracle.com/database/technologies/xe-prior-releases.html


(μ°Έκ³ )

 

[DB] Oracle 버전별 νŠΉμ§•

Oracle 버전별 νŠΉμ§•, Edtiionκ°„ 차이.

velog.io

 

μ„€μΉ˜ ν›„ μ½˜μ†”μ—μ„œ μ œμ–΄

λ˜λŠ” 

 

SQL Developer (SQLμž…λ ₯ λ˜λŠ” GUI μ‚¬μš© κ°€λŠ₯)

https://www.oracle.com/tools/downloads/sqldev-downloads.html

ν–‰μ—μ„œ Ctrl+Enter 둜 λͺ…λ Ή μ‹€ν–‰

 

 

 

 

( SYSTEM은 DB 생성 κΆŒν•œμ΄ μ—†μœΌλ―€λ‘œ SYS둜 접속해야 ν•œλ‹€.)

 

- μƒ˜ν”Œ 계정 μ‚¬μš©ν•˜κΈ°

conn /as sysdba;
ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;
conn hr/hr;

 

- μƒˆ 계정 λ§Œλ“€κΈ°

(12C λ²„μ „λΆ€ν„°λŠ” μ΄λ¦„κ·œμΉ™ C##κ°€ μ‘΄μž¬ν•˜λ―€λ‘œ, λ¬΄μ‹œν•˜λ €λ©΄ > alter session set “_ORACLE_SCRIPT”=true; μ‚¬μš©)

CREATE USER 계정λͺ… IDENTIFIED BY λΉ„λ°€λ²ˆν˜Έ;
-- hr 계정과 같은 μˆ˜μ€€μ˜ κΆŒν•œ
GRANT CREATE SESSION to 계정λͺ…;
GRANT CREATE VIEW to 계정λͺ…;
GRANT CREATE SEQUENCE to 계정λͺ…;
GRANT CREATE DATABASE LINK to 계정λͺ…;
GRANT CREATE SYNONYM to 계정λͺ…;
GRANT UNLIMITED TABLESPACE to 계정λͺ…;

 

 

 

 

728x90