<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>새벽1:32분에 만든블로그</title>
    <link>https://infosul.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Mon, 15 Jun 2026 07:56:01 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>SuuuuuuuL</managingEditor>
    <item>
      <title>[centOS7] oracle 11g xe 설치 후 임포트까지</title>
      <link>https://infosul.tistory.com/32</link>
      <description>&lt;h1&gt;인스턴스 db 설치하기&lt;/h1&gt;
&lt;hr&gt;
&lt;p&gt;oracle 11g xe 참고사이트 &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#XEINL122&quot;&gt;https://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#XEINL122&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ajisaba.net/db/ora_linux_install.html&quot;&gt;http://www.ajisaba.net/db/ora_linux_install.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;아래 사이트 참고 &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.oracle.com/technetwork/articles/servers-storage-admin/ginnydbinstallonlinux-488779.html&quot;&gt;https://www.oracle.com/technetwork/articles/servers-storage-admin/ginnydbinstallonlinux-488779.html&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2&gt;oracle 기본 설치 요건&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;RAM： 1GB&lt;/li&gt;
&lt;li&gt;スワップ領域： 2.05GB&lt;/li&gt;
&lt;li&gt;HDD領域： 50GB&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;addUser (for ORACLE)-ssh&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;adduser newuser
passwd newuser
-----------------------------
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
-------------------------------
usermod -aG wheel newuser &amp;lt;-- 관리자그룹안으로 유저를 넣어준다&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;
&lt;li&gt;&lt;p&gt;ID/PWのssh 접속 가능하게 하고 싶을 때(필수아님 그냥 펨키접속이 보안상 더 안전)&lt;br&gt;&lt;strong&gt;sshd_confを修正&lt;/strong&gt;&lt;br&gt;참고 : &lt;a href=&quot;http://programmingskills.net/archives/315&quot;&gt;http://programmingskills.net/archives/315&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;새#ssh install
sudo apt-get install openssh-server
or
sudo apt-get install ssh # client/server install&amp;amp;update

# sudo vim /etc/ssh/sshd_conf&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;passwordAuthentication --&amp;gt; yes に変更&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;폴더권한설정&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;# cd /home/oracle
# mkdir db
# chown -R oracle:oinstall db
# chmod -R 775 db
# chmod g+s db&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;swap memory 2G로 늘리는 방법&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;First, create a file which will be used as swap space&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sudo fallocate -l 2G /swapfile&lt;/p&gt;
&lt;p&gt;sudo dd if=/dev/zero of=/swapfile bs=1M count=2048&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ensure that only the root user can read and write the swap file&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sudo chmod 600 /swapfile&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;set up a Linux swap area on the file:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sudo mkswap /swapfile&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run the following command to activate the swap:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sudo swapon /swapfile&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Verify that the swap is active by using either the &lt;code&gt;swapon&lt;/code&gt; or the &lt;code&gt;free&lt;/code&gt; command as shown below:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sudo swapon --show&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[oracle@&lt;strong&gt;**&lt;/strong&gt; Disk1]$ &lt;strong&gt;sudo free -h&lt;/strong&gt;&lt;br&gt;           total        used        free      shared  buff/cache   available&lt;br&gt;Mem:           991M         60M         95M        6.6M        835M        774M&lt;br&gt;Swap:          2.0G          0B        2.0G&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;swap spaceが上記のように２Gになっていることを確認した後 oracle を設置 &lt;/p&gt;
&lt;h2&gt;development tool install&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;pre&gt;&lt;code&gt;yum groupinstall &amp;quot;Development Tools&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;만약 안되면 아래 명령어 하고 다시 시도해볼것... 참고로 root 유저 아니면 sudo로 실행해야함&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;yum install libaio*&lt;/p&gt;
&lt;p&gt;yum update  &lt;/p&gt;
&lt;/blockquote&gt;
&lt;pre&gt;&lt;code&gt;yum install bc&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;이건 반드시 먼저 깔려있어야 에러 안나니까 다시한번 확인해서 설치할것...&lt;/p&gt;
&lt;h2&gt;oracle zip download&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;ftp 이용하기 &lt;/p&gt;
&lt;p&gt;그냥 ftp 로 오라클 홈페이지에서 다운받은 파일을 이동시킨다.&lt;/p&gt;
&lt;p&gt;파일명: &lt;strong&gt;oracle-xe-11.2.0-1.0.x86_64.rpm&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;오라클다운로드사이트 : &lt;a href=&quot;http://www.oracle.com/technetwork/database/express-edition/downloads/index.html&quot;&gt;http://www.oracle.com/technetwork/database/express-edition/downloads/index.html&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;file unzip &lt;/p&gt;
&lt;pre&gt;&lt;code&gt;unzip oracle-xe-11.2.0-1.0.x86_64.rpm.zip&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;unzip 명령어가 안깔려있는 경우에는 yum install unzip 으로 깔도록하자&lt;/p&gt;
&lt;p&gt;압축해제 완료하면 Disk1폴더가 생성되고 그 안에 실행파일이 존재한다.&lt;/p&gt;
&lt;p&gt;실행파일명 :&lt;strong&gt;oracle-xe-11.2.0-1.0.x86_64.rpm&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;oracle 사용자 생성&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;# groupadd oinstall
# groupadd dba
# useradd -g oinstall -G dba oracle
# passwd oracle&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;dba 권한 부여&lt;/p&gt;
&lt;h2&gt;oracle install&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;cd /home/oracle/Disk1
rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm
/etc/init.d/oracle-xe configure&lt;/code&gt;&lt;/pre&gt;&lt;ol&gt;
&lt;li&gt;먼저 Disk1으로 들어가서 rpm 패키지로 설치 -2번째 줄까지 수행&lt;/li&gt;
&lt;li&gt;아래와 같은 메시지 확인 후 3번째 줄 수행&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;You must run &amp;#39;/etc/init.d/oracle-xe configure&amp;#39; as the root user to configure the database.&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;install configurations- 초기 설정&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A valid HTTP port for the Oracle Application Express (the default is 8080)&lt;br&gt;&lt;em&gt;defalt8080 　→　8888で변경 &amp;lt;-- 왜냐면 8080 넘 여기저기서 자주 쓰여서 걍 바꿔놈&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A valid port for the Oracle database listener (the default is 1521)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A password for the &lt;code&gt;SYS&lt;/code&gt; and &lt;code&gt;SYSTEM&lt;/code&gt; administrative user accounts&lt;br&gt;&lt;em&gt;password : 0000&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Confirm password for &lt;code&gt;SYS&lt;/code&gt; and &lt;code&gt;SYSTEM&lt;/code&gt; administrative user accounts&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Whether you want the database to start automatically when the computer starts (next reboot)&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Setting enviroment variables(after install)&lt;/h2&gt;
&lt;p&gt;They do not need to log on with root permissions to do so. Oracle Database XE provides a script that sets the necessary environment variables.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;shell 확인&lt;blockquote&gt;
&lt;p&gt;grep cent /etc/passwd&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[root@인스턴스명 bin]# grep cent /etc/passwd&lt;br&gt;centos:x:1000:1000::/home/centos:/bin/bash&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;명령어 실행 결과가 bash 로 나오니까 나의 현재 쉘 종류는 bash shell 임&lt;br&gt;아래 경로의 쉘파일을 실행시켜준다 ( 환경변수 아래의 쉘이 자동세팅 해줌) &lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh&lt;/code&gt;&lt;/pre&gt;&lt;/blockquote&gt;
&lt;p&gt;sqlplusのcommandを認識できない時は上記のcommandをもう一度実行する。&lt;/p&gt;
&lt;h2&gt;Making Oracle Database XE Available to Remote Clients&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Start SQL*Plus and log in as &lt;code&gt;SYSTEM&lt;/code&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;sqlplus  system &lt;/p&gt;
&lt;p&gt;enter password : 0000(설치시 초기비번)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;sql prompt에 아래 command  입력&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;SQL&amp;gt; EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE); &lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;create account and import data&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;p&gt;create account &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;SQL&amp;gt; create user bsdev identified by bsdev;&lt;/p&gt;
&lt;p&gt;SQL&amp;gt; grant connect, resource, dba to bsdev;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;connect to sys user and create dump file folder on  the local file system &lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;CREATE DIRECTORY DUMP_DIR AS &amp;#39;/&amp;lt;dump_folder&amp;gt;&amp;#39;;
GRANT read, write ON DIRECTORY DUMP_DIR TO bsdev;
grant create any directory to bsdev;
grant EXP_FULL_DATABASE to bsdev;
grant IMP_FULL_DATABASE to bsdev;&lt;/code&gt;&lt;/pre&gt;&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;dmp 파일 경로 파악(ftp 이용하여 올려놓자)&lt;br&gt;/home/oracle/bslocal.dmp (이번에 사용한 경로)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;sqlplus 나간 후 임포트하기 &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;SQL&amp;gt; exit &lt;/p&gt;
&lt;p&gt;imp bsdev/bsdev file=&amp;#39;/home/oracle/bslocal.dmp&amp;#39; full=y&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;.bash profile setting&lt;/h2&gt;
&lt;p&gt;홈 디렉토리(오라클 사용자의.bash_profile위치 편집 )&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# su - oracle
$ cp /etc/skel/.bash_profile /u01/app/oracle/ 
$ cp /etc/skel/.bashrc /u01/app/oracle/
$ vi ~/.bashrc&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;*&lt;em&gt;# *&lt;/em&gt;  vi /home/oracle/.bash_profile &lt;/p&gt;
&lt;p&gt;(.bash_profile을 vi편집기로 실행 후 편집)&lt;/p&gt;
&lt;p&gt;oracle_env.sh 참조&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;# source .bash_profile&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;(profile 적용)&lt;/p&gt;
&lt;h2&gt;&lt;/h2&gt;
&lt;p&gt;. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh&lt;/p&gt;
&lt;h2&gt;image로 DB  ORACLE을 카피떠서 만든 경우  리스너가 동작하지 않을 때&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;LSNRCTL&amp;gt; start
Starting /u01/app/oracle/product/11.2.0/xe/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 11.2.0.2.0 - Production
System parameter file is /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora
Log messages written to /u01/app/oracle/product/11.2.0/xe/log/diag/tnslsnr/bs-db-dev2/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bs-db-dev.novalocal)(PORT=1521)))
TNS-12545: Connect failed because target host or object does not exist
 TNS-12560: TNS:protocol adapter error
  TNS-00515: Connect failed because target host or object does not exist
   Linux Error: 2: No such file or directory

Listener failed to start. See the error message(s) above...&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;위와 같이 lsnrctl 을 시작하지만, HOST=bs-db-dev.novalocal 이 예전 인스턴스명으로 되어 있기 때문에 변경해 주어야 한다.  아래 경로로 들어가서 변경하면 됨 &lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora&lt;/code&gt;&lt;/pre&gt;</description>
      <category>linux</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/32</guid>
      <comments>https://infosul.tistory.com/32#entry32comment</comments>
      <pubDate>Mon, 20 Jan 2020 13:58:10 +0900</pubDate>
    </item>
    <item>
      <title>日本語190725</title>
      <link>https://infosul.tistory.com/31</link>
      <description>&lt;p&gt;拠点&amp;nbsp;거점&amp;nbsp;きょてん &lt;br /&gt;（記） &lt;br /&gt;紐づけ　히모즈케-&amp;nbsp;相互に結び付ける &lt;br /&gt;상호&amp;nbsp;연계한다는의미&amp;nbsp; &lt;br /&gt;採番사이방&amp;nbsp;-&amp;nbsp;채번&amp;nbsp;번호를&amp;nbsp;따는것&amp;nbsp; &lt;br /&gt;上場&amp;nbsp;죠우죠우&amp;nbsp;상장&amp;nbsp;-&amp;nbsp;버전업&amp;nbsp; &lt;br /&gt;니지겐바&amp;nbsp;코드-&amp;nbsp;큐알코드&amp;nbsp;바꾸기&amp;nbsp; &lt;br /&gt;割り込み&amp;nbsp;새치기,&amp;nbsp;업무순위&amp;nbsp;우선인&amp;nbsp;업무 &lt;br /&gt;絞り込む&amp;nbsp;짜맞추다&amp;nbsp; &lt;br /&gt;&lt;br /&gt;内税、1:外税、2:非課税 &lt;br /&gt;うちぜい　そとぜい　ひかぜい &lt;br /&gt;세금포함,&amp;nbsp;&amp;nbsp;세금미포함,&amp;nbsp;비과세&amp;nbsp; &lt;br /&gt;ざっくり&amp;nbsp;대충&amp;nbsp; &lt;/p&gt;</description>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/31</guid>
      <comments>https://infosul.tistory.com/31#entry31comment</comments>
      <pubDate>Thu, 25 Jul 2019 11:20:57 +0900</pubDate>
    </item>
    <item>
      <title>리눅스 잡스러운 기초내용들 정리</title>
      <link>https://infosul.tistory.com/30</link>
      <description>&lt;!doctype html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta charset='UTF-8'&gt;&lt;meta name='viewport' content='width=device-width initial-scale=1'&gt;
&lt;title&gt;리눅스 잡스러운 기초내용들 정리&lt;/title&gt;&lt;link href='https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&amp;subset=latin,latin-ext' rel='stylesheet' type='text/css' /&gt;&lt;style type='text/css'&gt;html {overflow-x: initial !important;}:root { --bg-color:#ffffff; --text-color:#333333; --select-text-bg-color:#B5D6FC; --select-text-font-color:auto; --monospace:&quot;Lucida Console&quot;,Consolas,&quot;Courier&quot;,monospace; }
html { font-size: 14px; background-color: var(--bg-color); color: var(--text-color); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body { margin: 0px; padding: 0px; height: auto; bottom: 0px; top: 0px; left: 0px; right: 0px; font-size: 1rem; line-height: 1.42857; overflow-x: hidden; background: inherit; tab-size: 4; }
iframe { margin: auto; }
a.url { word-break: break-all; }
a:active, a:hover { outline: 0px; }
.in-text-selection, ::selection { text-shadow: none; background: var(--select-text-bg-color); color: var(--select-text-font-color); }
#write { margin: 0px auto; height: auto; width: inherit; word-break: normal; word-wrap: break-word; position: relative; white-space: normal; overflow-x: visible; padding-top: 40px; }
#write.first-line-indent p { text-indent: 2em; }
#write.first-line-indent li p, #write.first-line-indent p * { text-indent: 0px; }
#write.first-line-indent li { margin-left: 2em; }
.for-image #write { padding-left: 8px; padding-right: 8px; }
body.typora-export { padding-left: 30px; padding-right: 30px; }
.typora-export .footnote-line, .typora-export li, .typora-export p { white-space: pre-wrap; }
@media screen and (max-width: 500px) {
  body.typora-export { padding-left: 0px; padding-right: 0px; }
  #write { padding-left: 20px; padding-right: 20px; }
  .CodeMirror-sizer { margin-left: 0px !important; }
  .CodeMirror-gutters { display: none !important; }
}
#write li &gt; figure:first-child { margin-top: -20px; }
#write ol, #write ul { position: relative; }
img { max-width: 100%; vertical-align: middle; }
button, input, select, textarea { color: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; }
input[type=&quot;checkbox&quot;], input[type=&quot;radio&quot;] { line-height: normal; padding: 0px; }
*, ::after, ::before { box-sizing: border-box; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p, #write pre { width: inherit; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p { position: relative; }
h1, h2, h3, h4, h5, h6 { break-after: avoid-page; break-inside: avoid; orphans: 2; }
p { orphans: 4; }
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }
.md-math-block, .md-rawblock, h1, h2, h3, h4, h5, h6, p { margin-top: 1rem; margin-bottom: 1rem; }
.hidden { display: none; }
.md-blockmeta { color: rgb(204, 204, 204); font-weight: 700; font-style: italic; }
a { cursor: pointer; }
sup.md-footnote { padding: 2px 4px; background-color: rgba(238, 238, 238, 0.7); color: rgb(85, 85, 85); border-radius: 4px; cursor: pointer; }
sup.md-footnote a, sup.md-footnote a:hover { color: inherit; text-transform: inherit; text-decoration: inherit; }
#write input[type=&quot;checkbox&quot;] { cursor: pointer; width: inherit; height: inherit; }
figure { overflow-x: auto; margin: 1.2em 0px; max-width: calc(100% + 16px); padding: 0px; }
figure &gt; table { margin: 0px !important; }
tr { break-inside: avoid; break-after: auto; }
thead { display: table-header-group; }
table { border-collapse: collapse; border-spacing: 0px; width: 100%; overflow: auto; break-inside: auto; text-align: left; }
table.md-table td { min-width: 32px; }
.CodeMirror-gutters { border-right: 0px; background-color: inherit; }
.CodeMirror-linenumber { user-select: none; }
.CodeMirror { text-align: left; }
.CodeMirror-placeholder { opacity: 0.3; }
.CodeMirror pre { padding: 0px 4px; }
.CodeMirror-lines { padding: 0px; }
div.hr:focus { cursor: none; }
#write pre { white-space: pre-wrap; }
#write.fences-no-line-wrapping pre { white-space: pre; }
#write pre.ty-contain-cm { white-space: normal; }
.CodeMirror-gutters { margin-right: 4px; }
.md-fences { font-size: 0.9rem; display: block; break-inside: avoid; text-align: left; overflow: visible; white-space: pre; background: inherit; position: relative !important; }
.md-diagram-panel { width: 100%; margin-top: 10px; text-align: center; padding-top: 0px; padding-bottom: 8px; overflow-x: auto; }
#write .md-fences.mock-cm { white-space: pre-wrap; }
.md-fences.md-fences-with-lineno { padding-left: 0px; }
#write.fences-no-line-wrapping .md-fences.mock-cm { white-space: pre; overflow-x: auto; }
.md-fences.mock-cm.md-fences-with-lineno { padding-left: 8px; }
.CodeMirror-line, twitterwidget { break-inside: avoid; }
.footnotes { opacity: 0.8; font-size: 0.9rem; margin-top: 1em; margin-bottom: 1em; }
.footnotes + .footnotes { margin-top: 0px; }
.md-reset { margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: top; background: 0px 0px; text-decoration: none; text-shadow: none; float: none; position: static; width: auto; height: auto; white-space: nowrap; cursor: inherit; -webkit-tap-highlight-color: transparent; line-height: normal; font-weight: 400; text-align: left; box-sizing: content-box; direction: ltr; }
li div { padding-top: 0px; }
blockquote { margin: 1rem 0px; }
li .mathjax-block, li p { margin: 0.5rem 0px; }
li { margin: 0px; position: relative; }
blockquote &gt; :last-child { margin-bottom: 0px; }
blockquote &gt; :first-child, li &gt; :first-child { margin-top: 0px; }
.footnotes-area { color: rgb(136, 136, 136); margin-top: 0.714rem; padding-bottom: 0.143rem; white-space: normal; }
#write .footnote-line { white-space: pre-wrap; }
@media print {
  body, html { border: 1px solid transparent; height: 99%; break-after: avoid; break-before: avoid; }
  #write { margin-top: 0px; padding-top: 0px; border-color: transparent !important; }
  .typora-export * { -webkit-print-color-adjust: exact; }
  html.blink-to-pdf { font-size: 13px; }
  .typora-export #write { padding-left: 32px; padding-right: 32px; padding-bottom: 0px; break-after: avoid; }
  .typora-export #write::after { height: 0px; }
  @page { margin: 20mm 0px; }
}
.footnote-line { margin-top: 0.714em; font-size: 0.7em; }
a img, img a { cursor: pointer; }
pre.md-meta-block { font-size: 0.8rem; min-height: 0.8rem; white-space: pre-wrap; background: rgb(204, 204, 204); display: block; overflow-x: hidden; }
p &gt; .md-image:only-child:not(.md-img-error) img, p &gt; img:only-child { display: block; margin: auto; }
p &gt; .md-image:only-child { display: inline-block; width: 100%; }
#write .MathJax_Display { margin: 0.8em 0px 0px; }
.md-math-block { width: 100%; }
.md-math-block:not(:empty)::after { display: none; }
[contenteditable=&quot;true&quot;]:active, [contenteditable=&quot;true&quot;]:focus { outline: 0px; box-shadow: none; }
.md-task-list-item { position: relative; list-style-type: none; }
.task-list-item.md-task-list-item { padding-left: 0px; }
.md-task-list-item &gt; input { position: absolute; top: 0px; left: 0px; margin-left: -1.2em; margin-top: calc(1em - 10px); border: none; }
.math { font-size: 1rem; }
.md-toc { min-height: 3.58rem; position: relative; font-size: 0.9rem; border-radius: 10px; }
.md-toc-content { position: relative; margin-left: 0px; }
.md-toc-content::after, .md-toc::after { display: none; }
.md-toc-item { display: block; color: rgb(65, 131, 196); }
.md-toc-item a { text-decoration: none; }
.md-toc-inner:hover { text-decoration: underline; }
.md-toc-inner { display: inline-block; cursor: pointer; }
.md-toc-h1 .md-toc-inner { margin-left: 0px; font-weight: 700; }
.md-toc-h2 .md-toc-inner { margin-left: 2em; }
.md-toc-h3 .md-toc-inner { margin-left: 4em; }
.md-toc-h4 .md-toc-inner { margin-left: 6em; }
.md-toc-h5 .md-toc-inner { margin-left: 8em; }
.md-toc-h6 .md-toc-inner { margin-left: 10em; }
@media screen and (max-width: 48em) {
  .md-toc-h3 .md-toc-inner { margin-left: 3.5em; }
  .md-toc-h4 .md-toc-inner { margin-left: 5em; }
  .md-toc-h5 .md-toc-inner { margin-left: 6.5em; }
  .md-toc-h6 .md-toc-inner { margin-left: 8em; }
}
a.md-toc-inner { font-size: inherit; font-style: inherit; font-weight: inherit; line-height: inherit; }
.footnote-line a:not(.reversefootnote) { color: inherit; }
.md-attr { display: none; }
.md-fn-count::after { content: &quot;.&quot;; }
code, pre, samp, tt { font-family: var(--monospace); }
kbd { margin: 0px 0.1em; padding: 0.1em 0.6em; font-size: 0.8em; color: rgb(36, 39, 41); background: rgb(255, 255, 255); border: 1px solid rgb(173, 179, 185); border-radius: 3px; box-shadow: rgba(12, 13, 14, 0.2) 0px 1px 0px, rgb(255, 255, 255) 0px 0px 0px 2px inset; white-space: nowrap; vertical-align: middle; }
.md-comment { color: rgb(162, 127, 3); opacity: 0.8; font-family: var(--monospace); }
code { text-align: left; vertical-align: initial; }
a.md-print-anchor { white-space: pre !important; border-width: initial !important; border-style: none !important; border-color: initial !important; display: inline-block !important; position: absolute !important; width: 1px !important; right: 0px !important; outline: 0px !important; background: 0px 0px !important; text-decoration: initial !important; text-shadow: initial !important; }
.md-inline-math .MathJax_SVG .noError { display: none !important; }
.html-for-mac .inline-math-svg .MathJax_SVG { vertical-align: 0.2px; }
.md-math-block .MathJax_SVG_Display { text-align: center; margin: 0px; position: relative; text-indent: 0px; max-width: none; max-height: none; min-height: 0px; min-width: 100%; width: auto; overflow-y: hidden; display: block !important; }
.MathJax_SVG_Display, .md-inline-math .MathJax_SVG_Display { width: auto; margin: inherit; display: inline-block !important; }
.MathJax_SVG .MJX-monospace { font-family: var(--monospace); }
.MathJax_SVG .MJX-sans-serif { font-family: sans-serif; }
.MathJax_SVG { display: inline; font-style: normal; font-weight: 400; line-height: normal; zoom: 90%; text-indent: 0px; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0px; min-height: 0px; border: 0px; padding: 0px; margin: 0px; }
.MathJax_SVG * { transition: none; }
.MathJax_SVG_Display svg { vertical-align: middle !important; margin-bottom: 0px !important; }
.os-windows.monocolor-emoji .md-emoji { font-family: &quot;Segoe UI Symbol&quot;, sans-serif; }
.md-diagram-panel &gt; svg { max-width: 100%; }
[lang=&quot;mermaid&quot;] svg, [lang=&quot;flow&quot;] svg { max-width: 100%; }
[lang=&quot;mermaid&quot;] .node text { font-size: 1rem; }
table tr th { border-bottom: 0px; }
video { max-width: 100%; display: block; margin: 0px auto; }
iframe { max-width: 100%; width: 100%; border: none; }
.highlight td, .highlight tr { border: 0px; }


.CodeMirror { height: auto; }
.CodeMirror.cm-s-inner { background: inherit; }
.CodeMirror-scroll { overflow-y: hidden; overflow-x: auto; z-index: 3; }
.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler { background-color: rgb(255, 255, 255); }
.CodeMirror-gutters { border-right: 1px solid rgb(221, 221, 221); background: inherit; white-space: nowrap; }
.CodeMirror-linenumber { padding: 0px 3px 0px 5px; text-align: right; color: rgb(153, 153, 153); }
.cm-s-inner .cm-keyword { color: rgb(119, 0, 136); }
.cm-s-inner .cm-atom, .cm-s-inner.cm-atom { color: rgb(34, 17, 153); }
.cm-s-inner .cm-number { color: rgb(17, 102, 68); }
.cm-s-inner .cm-def { color: rgb(0, 0, 255); }
.cm-s-inner .cm-variable { color: rgb(0, 0, 0); }
.cm-s-inner .cm-variable-2 { color: rgb(0, 85, 170); }
.cm-s-inner .cm-variable-3 { color: rgb(0, 136, 85); }
.cm-s-inner .cm-string { color: rgb(170, 17, 17); }
.cm-s-inner .cm-property { color: rgb(0, 0, 0); }
.cm-s-inner .cm-operator { color: rgb(152, 26, 26); }
.cm-s-inner .cm-comment, .cm-s-inner.cm-comment { color: rgb(170, 85, 0); }
.cm-s-inner .cm-string-2 { color: rgb(255, 85, 0); }
.cm-s-inner .cm-meta { color: rgb(85, 85, 85); }
.cm-s-inner .cm-qualifier { color: rgb(85, 85, 85); }
.cm-s-inner .cm-builtin { color: rgb(51, 0, 170); }
.cm-s-inner .cm-bracket { color: rgb(153, 153, 119); }
.cm-s-inner .cm-tag { color: rgb(17, 119, 0); }
.cm-s-inner .cm-attribute { color: rgb(0, 0, 204); }
.cm-s-inner .cm-header, .cm-s-inner.cm-header { color: rgb(0, 0, 255); }
.cm-s-inner .cm-quote, .cm-s-inner.cm-quote { color: rgb(0, 153, 0); }
.cm-s-inner .cm-hr, .cm-s-inner.cm-hr { color: rgb(153, 153, 153); }
.cm-s-inner .cm-link, .cm-s-inner.cm-link { color: rgb(0, 0, 204); }
.cm-negative { color: rgb(221, 68, 68); }
.cm-positive { color: rgb(34, 153, 34); }
.cm-header, .cm-strong { font-weight: 700; }
.cm-del { text-decoration: line-through; }
.cm-em { font-style: italic; }
.cm-link { text-decoration: underline; }
.cm-error { color: red; }
.cm-invalidchar { color: red; }
.cm-constant { color: rgb(38, 139, 210); }
.cm-defined { color: rgb(181, 137, 0); }
div.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 255, 0); }
div.CodeMirror span.CodeMirror-nonmatchingbracket { color: rgb(255, 34, 34); }
.cm-s-inner .CodeMirror-activeline-background { background: inherit; }
.CodeMirror { position: relative; overflow: hidden; }
.CodeMirror-scroll { height: 100%; outline: 0px; position: relative; box-sizing: content-box; background: inherit; }
.CodeMirror-sizer { position: relative; }
.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar { position: absolute; z-index: 6; display: none; }
.CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden; }
.CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: hidden; }
.CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; }
.CodeMirror-gutter-filler { left: 0px; bottom: 0px; }
.CodeMirror-gutters { position: absolute; left: 0px; top: 0px; padding-bottom: 30px; z-index: 3; }
.CodeMirror-gutter { white-space: normal; height: 100%; box-sizing: content-box; padding-bottom: 30px; margin-bottom: -32px; display: inline-block; }
.CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: 0px 0px !important; border: none !important; }
.CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; z-index: 4; }
.CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; }
.CodeMirror-lines { cursor: text; }
.CodeMirror pre { border-radius: 0px; border-width: 0px; background: 0px 0px; font-family: inherit; font-size: inherit; margin: 0px; white-space: pre; word-wrap: normal; color: inherit; z-index: 2; position: relative; overflow: visible; }
.CodeMirror-wrap pre { word-wrap: break-word; white-space: pre-wrap; word-break: normal; }
.CodeMirror-code pre { border-right: 30px solid transparent; width: fit-content; }
.CodeMirror-wrap .CodeMirror-code pre { border-right: none; width: auto; }
.CodeMirror-linebackground { position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; z-index: 0; }
.CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; }
.CodeMirror-wrap .CodeMirror-scroll { overflow-x: hidden; }
.CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflow: hidden; visibility: hidden; }
.CodeMirror-measure pre { position: static; }
.CodeMirror div.CodeMirror-cursor { position: absolute; visibility: hidden; border-right: none; width: 0px; }
.CodeMirror div.CodeMirror-cursor { visibility: hidden; }
.CodeMirror-focused div.CodeMirror-cursor { visibility: inherit; }
.cm-searching { background: rgba(255, 255, 0, 0.4); }
@media print {
  .CodeMirror div.CodeMirror-cursor { visibility: hidden; }
}


:root { --side-bar-bg-color: #fafafa; --control-text-color: #777; }
html { font-size: 16px; }
body { font-family: &quot;Open Sans&quot;, &quot;Clear Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; color: rgb(51, 51, 51); line-height: 1.6; }
#write { max-width: 860px; margin: 0px auto; padding: 30px 30px 100px; }
#write &gt; ul:first-child, #write &gt; ol:first-child { margin-top: 30px; }
a { color: rgb(65, 131, 196); }
h1, h2, h3, h4, h5, h6 { position: relative; margin-top: 1rem; margin-bottom: 1rem; font-weight: bold; line-height: 1.4; cursor: text; }
h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor { text-decoration: none; }
h1 tt, h1 code { font-size: inherit; }
h2 tt, h2 code { font-size: inherit; }
h3 tt, h3 code { font-size: inherit; }
h4 tt, h4 code { font-size: inherit; }
h5 tt, h5 code { font-size: inherit; }
h6 tt, h6 code { font-size: inherit; }
h1 { padding-bottom: 0.3em; font-size: 2.25em; line-height: 1.2; border-bottom: 1px solid rgb(238, 238, 238); }
h2 { padding-bottom: 0.3em; font-size: 1.75em; line-height: 1.225; border-bottom: 1px solid rgb(238, 238, 238); }
h3 { font-size: 1.5em; line-height: 1.43; }
h4 { font-size: 1.25em; }
h5 { font-size: 1em; }
h6 { font-size: 1em; color: rgb(119, 119, 119); }
p, blockquote, ul, ol, dl, table { margin: 0.8em 0px; }
li &gt; ol, li &gt; ul { margin: 0px; }
hr { height: 2px; padding: 0px; margin: 16px 0px; background-color: rgb(231, 231, 231); border: 0px none; overflow: hidden; box-sizing: content-box; }
li p.first { display: inline-block; }
ul, ol { padding-left: 30px; }
ul:first-child, ol:first-child { margin-top: 0px; }
ul:last-child, ol:last-child { margin-bottom: 0px; }
blockquote { border-left: 4px solid rgb(223, 226, 229); padding: 0px 15px; color: rgb(119, 119, 119); }
blockquote blockquote { padding-right: 0px; }
table { padding: 0px; word-break: initial; }
table tr { border-top: 1px solid rgb(223, 226, 229); margin: 0px; padding: 0px; }
table tr:nth-child(2n), thead { background-color: rgb(248, 248, 248); }
table tr th { font-weight: bold; border-width: 1px 1px 0px; border-top-style: solid; border-right-style: solid; border-left-style: solid; border-top-color: rgb(223, 226, 229); border-right-color: rgb(223, 226, 229); border-left-color: rgb(223, 226, 229); border-image: initial; border-bottom-style: initial; border-bottom-color: initial; text-align: left; margin: 0px; padding: 6px 13px; }
table tr td { border: 1px solid rgb(223, 226, 229); text-align: left; margin: 0px; padding: 6px 13px; }
table tr th:first-child, table tr td:first-child { margin-top: 0px; }
table tr th:last-child, table tr td:last-child { margin-bottom: 0px; }
.CodeMirror-lines { padding-left: 4px; }
.code-tooltip { box-shadow: rgba(0, 28, 36, 0.3) 0px 1px 1px 0px; border-top: 1px solid rgb(238, 242, 242); }
.md-fences, code, tt { border: 1px solid rgb(231, 234, 237); background-color: rgb(248, 248, 248); border-radius: 3px; padding: 2px 4px 0px; font-size: 0.9em; }
code { background-color: rgb(243, 244, 244); padding: 0px 2px; }
.md-fences { margin-bottom: 15px; margin-top: 15px; padding-top: 8px; padding-bottom: 6px; }
.md-task-list-item &gt; input { margin-left: -1.3em; }
@media print {
  html { font-size: 13px; }
  table, pre { break-inside: avoid; }
  pre { word-wrap: break-word; }
}
.md-fences { background-color: rgb(248, 248, 248); }
#write pre.md-meta-block { padding: 1rem; font-size: 85%; line-height: 1.45; background-color: rgb(247, 247, 247); border: 0px; border-radius: 3px; color: rgb(119, 119, 119); margin-top: 0px !important; }
.mathjax-block &gt; .code-tooltip { bottom: 0.375rem; }
.md-mathjax-midline { background: rgb(250, 250, 250); }
#write &gt; h3.md-focus::before { left: -1.5625rem; top: 0.375rem; }
#write &gt; h4.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
#write &gt; h5.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
#write &gt; h6.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
.md-image &gt; .md-meta { border-radius: 3px; padding: 2px 0px 0px 4px; font-size: 0.9em; color: inherit; }
.md-tag { color: rgb(167, 167, 167); opacity: 1; }
.md-toc { margin-top: 20px; padding-bottom: 20px; }
.sidebar-tabs { border-bottom: none; }
#typora-quick-open { border: 1px solid rgb(221, 221, 221); background-color: rgb(248, 248, 248); }
#typora-quick-open-item { background-color: rgb(250, 250, 250); border-color: rgb(254, 254, 254) rgb(229, 229, 229) rgb(229, 229, 229) rgb(238, 238, 238); border-style: solid; border-width: 1px; }
.on-focus-mode blockquote { border-left-color: rgba(85, 85, 85, 0.12); }
header, .context-menu, .megamenu-content, footer { font-family: &quot;Segoe UI&quot;, Arial, sans-serif; }
.file-node-content:hover .file-node-icon, .file-node-content:hover .file-node-open-state { visibility: visible; }
.mac-seamless-mode #typora-sidebar { background-color: var(--side-bar-bg-color); }
.md-lang { color: rgb(180, 101, 77); }
.html-for-mac .context-menu { --item-hover-bg-color: #E6F0FE; }
#md-notification .btn { border: 0px; }
.dropdown-menu .divider { border-color: rgb(229, 229, 229); }





 .typora-export li, .typora-export p, .typora-export,  .footnote-line {white-space: normal;} 
&lt;/style&gt;
&lt;/head&gt;
&lt;body class='typora-export os-windows' &gt;
&lt;div  id='write'  class = 'is-node'&gt;&lt;h2&gt;&lt;a name='header-n2' class='md-header-anchor '&gt;&lt;/a&gt;리눅스 잡스러운 기초내용들 정리&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;사용시 알아두면 편리한 것들&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;복사 :  &lt;strong&gt;Ctrl +insert&lt;/strong&gt; 붙여넣기 : &lt;strong&gt;shift+insert&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;backspace가 안 먹힐땐 ctrl 또는 shift를 누르면서 backspace를 누르면 ok&lt;/li&gt;&lt;li&gt;tap 키로 폴더명/파일명 자동완성하기 !&lt;/li&gt;&lt;li&gt;명령어 뒤에 --help 붙여서 사용법 확인 가능&lt;/li&gt;&lt;li&gt;작업 도중에 취소하고 돌아가기는 ctrl+c &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol start='2' &gt;&lt;li&gt;&lt;p&gt; &lt;strong&gt;권한 관련 이해&lt;/strong&gt; &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;권한(permission)이란? 
r read, w write  x excute 이렇게 rwx 로 파일과 디렉토리의 권한이 존재함 
보통 모든 권한이 주어지는 경우는 ll -l 로 출력시 rwxrwxrwx =777 &lt;/p&gt;&lt;ul&gt;&lt;li&gt;권한있으면 1, 없으면 0이라고 할 때 이진수 표현으로 111= 자연수7
111 rwx -읽기쓰기실행하기 =4+2+1=7 
100 r - -  읽기전용= 4
110 rw-  읽고쓰기 = 4+2=6  대충 이런식으로 숫자로 권한표현!&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;rwx 권한표현이 3개나 있는 이유 
1.파일 소유자의 권한 2. 파일 소유자가 속한 그룹원의 권한 3.그외 그룹의 권한&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;예시) 권한 앞의 d는 디렉토리를 의미함 &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre spellcheck=&quot;false&quot; class=&quot;md-fences md-end-block ty-contain-cm modeLoaded&quot; lang=&quot;bash&quot;&gt;&lt;div class=&quot;CodeMirror cm-s-inner CodeMirror-wrap&quot; lang=&quot;bash&quot;&gt;&lt;div style=&quot;overflow: hidden; position: relative; width: 3px; height: 0px; top: 0px; left: 8px;&quot;&gt;&lt;textarea autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; spellcheck=&quot;false&quot; tabindex=&quot;0&quot; style=&quot;position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;&quot;&gt;&lt;/textarea&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scrollbar-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scroll&quot; tabindex=&quot;-1&quot;&gt;&lt;div class=&quot;CodeMirror-sizer&quot; style=&quot;margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;&quot;&gt;&lt;div style=&quot;position: relative; top: 0px;&quot;&gt;&lt;div class=&quot;CodeMirror-lines&quot; role=&quot;presentation&quot;&gt;&lt;div role=&quot;presentation&quot; style=&quot;position: relative; outline: none;&quot;&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;pre&gt;&lt;span&gt;xxxxxxxxxx&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;/div&gt;&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-code&quot; role=&quot;presentation&quot; style=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline&quot; style=&quot;position: relative;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline-background CodeMirror-linebackground&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-background CodeMirror-activeline-gutter&quot; style=&quot;left: 0px; width: 0px;&quot;&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;drwxrwxr-x &lt;span class=&quot;cm-number&quot;&gt;2&lt;/span&gt; webdev webdev &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;4096&lt;/span&gt; May &lt;span class=&quot;cm-number&quot;&gt;31&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;20&lt;/span&gt;:15 bin&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;&lt;span class=&quot;cm-attribute&quot;&gt;-rw-rw-r--&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;1&lt;/span&gt; webdev webdev &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;29314274&lt;/span&gt; May &lt;span class=&quot;cm-number&quot;&gt;29&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;10&lt;/span&gt;:23 elasticsearch-2.2.1.rpm&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;drwxrwxr-x &lt;span class=&quot;cm-number&quot;&gt;4&lt;/span&gt; webdev webdev &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;4096&lt;/span&gt; May &lt;span class=&quot;cm-number&quot;&gt;30&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;12&lt;/span&gt;:05 esworks&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;drwxr-xr-x &lt;span class=&quot;cm-number&quot;&gt;7&lt;/span&gt; webdev webdev &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;4096&lt;/span&gt; Jul &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;7&lt;/span&gt; &amp;nbsp;&lt;span class=&quot;cm-number&quot;&gt;2018&lt;/span&gt; jdk1.8.0_181&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;&lt;span class=&quot;cm-attribute&quot;&gt;-rw-rw-r--&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;1&lt;/span&gt; webdev webdev &lt;span class=&quot;cm-number&quot;&gt;170023183&lt;/span&gt; May &lt;span class=&quot;cm-number&quot;&gt;24&lt;/span&gt; &lt;span class=&quot;cm-number&quot;&gt;20&lt;/span&gt;:59 jdk-8u181-linux-x64.rpm&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 112px;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutters&quot; style=&quot;display: none; height: 112px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;권한변경 명령어들- chmod, chown
chmod /chown - change mod 와 change owner의 약자. 대체로 sudo를 앞에 붙여서 실행하는 게 속편함
root 유저는 모든 권한을을 내맘대로 변경가능함 보통 sudo su 로 루트유저로 접속 가능&lt;/p&gt;&lt;ul&gt;&lt;li&gt;디렉토리의 권한을 변경 시, 하위 파일에도 일괄적으로 변경하고 싶을 때
chmod -R 777 디렉토리명 
위와같이 옵션을 붙여주면 디렉토리 내 모든 파일과 디렉토리가 한방에 변경됨&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol start='3' &gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;기본으로 알아두면 편리한 명령어들&lt;/strong&gt; &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;find - 파일 검색 명령어 &lt;/p&gt;&lt;pre spellcheck=&quot;false&quot; class=&quot;md-fences md-end-block ty-contain-cm modeLoaded&quot; lang=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror cm-s-inner CodeMirror-wrap&quot; lang=&quot;&quot;&gt;&lt;div style=&quot;overflow: hidden; position: relative; width: 3px; height: 0px; top: 0px; left: 8px;&quot;&gt;&lt;textarea autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; spellcheck=&quot;false&quot; tabindex=&quot;0&quot; style=&quot;position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;&quot;&gt;&lt;/textarea&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scrollbar-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scroll&quot; tabindex=&quot;-1&quot;&gt;&lt;div class=&quot;CodeMirror-sizer&quot; style=&quot;margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;&quot;&gt;&lt;div style=&quot;position: relative; top: 0px;&quot;&gt;&lt;div class=&quot;CodeMirror-lines&quot; role=&quot;presentation&quot;&gt;&lt;div role=&quot;presentation&quot; style=&quot;position: relative; outline: none;&quot;&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;pre&gt;&lt;span&gt;xxxxxxxxxx&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;/div&gt;&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-code&quot; role=&quot;presentation&quot;&gt;&lt;div class=&quot;CodeMirror-activeline&quot; style=&quot;position: relative;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline-background CodeMirror-linebackground&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-background CodeMirror-activeline-gutter&quot; style=&quot;left: 0px; width: 0px;&quot;&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;find /etc -name &quot;ssh*&quot; -type d&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 22px;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutters&quot; style=&quot;display: none; height: 22px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;p&gt;/etc 폴더 안에서 이름이 ssh로 시작하는 디렉토리 타입인 폴더를 찾으라는 명령&lt;/p&gt;&lt;p&gt;파일인 경우에는 -type을 안쓰면 됨 &lt;/p&gt;&lt;p&gt;＊를 붙이면 포함하는 것을 찾아줌&lt;/p&gt;&lt;p&gt;&lt;strong&gt;find는 옵션이 많으니 나중에 찾아서 별도로 정리해서 알아두자 !!&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;cp - copy 의 약자 파일, 디렉토리 복사가능&lt;/p&gt;&lt;pre spellcheck=&quot;false&quot; class=&quot;md-fences md-end-block ty-contain-cm modeLoaded&quot; lang=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror cm-s-inner CodeMirror-wrap&quot; lang=&quot;&quot;&gt;&lt;div style=&quot;overflow: hidden; position: relative; width: 3px; height: 0px; top: 0px; left: 8px;&quot;&gt;&lt;textarea autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; spellcheck=&quot;false&quot; tabindex=&quot;0&quot; style=&quot;position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;&quot;&gt;&lt;/textarea&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scrollbar-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scroll&quot; tabindex=&quot;-1&quot;&gt;&lt;div class=&quot;CodeMirror-sizer&quot; style=&quot;margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;&quot;&gt;&lt;div style=&quot;position: relative; top: 0px;&quot;&gt;&lt;div class=&quot;CodeMirror-lines&quot; role=&quot;presentation&quot;&gt;&lt;div role=&quot;presentation&quot; style=&quot;position: relative; outline: none;&quot;&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;pre&gt;&lt;span&gt;xxxxxxxxxx&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;/div&gt;&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-code&quot; role=&quot;presentation&quot; style=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline&quot; style=&quot;position: relative;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline-background CodeMirror-linebackground&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-background CodeMirror-activeline-gutter&quot; style=&quot;left: 0px; width: 0px;&quot;&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;cp 파일명 파일명 --&amp;gt; file1을 복사하여 file2가 생성됨 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;cp 파일명 디렉토리명 --&amp;gt; 파일을 해당 디렉토리 안으로 복사 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;cp 파일명 파일명 디렉토리명 --&amp;gt; 파일 두개를 해당 디렉토리로 한번에 복사 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;cp -r 디렉토리명 디렉토리명 --&amp;gt; 옵션으로 디렉토리 하위 파일들까지 전체복사&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;cp -r 디렉토리명/ backup$(date '+_%Y%m%d') --&amp;gt; 해당 디렉토리의 백업디렉토리를 현재 날짜를 붙여서 백업본 만들어줌 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 134px;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutters&quot; style=&quot;display: none; height: 134px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;mv - move의 약자, 파일/디렉토리 이동 및 이름변경 &lt;/p&gt;&lt;pre spellcheck=&quot;false&quot; class=&quot;md-fences md-end-block ty-contain-cm modeLoaded&quot; lang=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror cm-s-inner CodeMirror-wrap&quot; lang=&quot;&quot;&gt;&lt;div style=&quot;overflow: hidden; position: relative; width: 3px; height: 0px; top: 0px; left: 8px;&quot;&gt;&lt;textarea autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; spellcheck=&quot;false&quot; tabindex=&quot;0&quot; style=&quot;position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;&quot;&gt;&lt;/textarea&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scrollbar-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scroll&quot; tabindex=&quot;-1&quot;&gt;&lt;div class=&quot;CodeMirror-sizer&quot; style=&quot;margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;&quot;&gt;&lt;div style=&quot;position: relative; top: 0px;&quot;&gt;&lt;div class=&quot;CodeMirror-lines&quot; role=&quot;presentation&quot;&gt;&lt;div role=&quot;presentation&quot; style=&quot;position: relative; outline: none;&quot;&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;pre&gt;&lt;span&gt;xxxxxxxxxx&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;/div&gt;&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-code&quot; role=&quot;presentation&quot;&gt;&lt;div class=&quot;CodeMirror-activeline&quot; style=&quot;position: relative;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline-background CodeMirror-linebackground&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-background CodeMirror-activeline-gutter&quot; style=&quot;left: 0px; width: 0px;&quot;&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;mv 파일명 파일명 --&amp;gt; 파일 이름 변경 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;mv 파일명 디렉토리명 --&amp;gt;디렉토리로 파일 이동 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;mv 파일명 파일명 디렉토리명 --&amp;gt; 파일2개 한번에 이동 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;mv 디렉토리명 디렉토리명 --&amp;gt;디렉토리 이름 변경 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 90px;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutters&quot; style=&quot;display: none; height: 90px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;ls -list 의 약자 현재 폴더안에 있는  것들을 리스트업 출력해줌 &lt;/p&gt;&lt;pre spellcheck=&quot;false&quot; class=&quot;md-fences md-end-block ty-contain-cm modeLoaded&quot; lang=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror cm-s-inner CodeMirror-wrap&quot; lang=&quot;&quot;&gt;&lt;div style=&quot;overflow: hidden; position: relative; width: 3px; height: 0px; top: 0px; left: 8px;&quot;&gt;&lt;textarea autocorrect=&quot;off&quot; autocapitalize=&quot;off&quot; spellcheck=&quot;false&quot; tabindex=&quot;0&quot; style=&quot;position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;&quot;&gt;&lt;/textarea&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scrollbar-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-filler&quot; cm-not-content=&quot;true&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-scroll&quot; tabindex=&quot;-1&quot;&gt;&lt;div class=&quot;CodeMirror-sizer&quot; style=&quot;margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;&quot;&gt;&lt;div style=&quot;position: relative; top: 0px;&quot;&gt;&lt;div class=&quot;CodeMirror-lines&quot; role=&quot;presentation&quot;&gt;&lt;div role=&quot;presentation&quot; style=&quot;position: relative; outline: none;&quot;&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;pre&gt;&lt;span&gt;xxxxxxxxxx&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-measure&quot;&gt;&lt;/div&gt;&lt;div style=&quot;position: relative; z-index: 1;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-code&quot; role=&quot;presentation&quot; style=&quot;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline&quot; style=&quot;position: relative;&quot;&gt;&lt;div class=&quot;CodeMirror-activeline-background CodeMirror-linebackground&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutter-background CodeMirror-activeline-gutter&quot; style=&quot;left: 0px; width: 0px;&quot;&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;옵션의 종류가 젤 중요함 ㅎ&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;-l long 상세하게  -h 파일사이즈 KMG로 보여줌 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;-a all 숨김파일까지전부다&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;-S size 사이즈별로 출력해줘&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;예) ls -al v*.c v로 시작하면서 .c로 끝나는 파일만 리스트로 출력 &lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; CodeMirror-line &quot; role=&quot;presentation&quot;&gt;&lt;span role=&quot;presentation&quot; style=&quot;padding-right: 0.1px;&quot;&gt;-al, -alS, 등의 옵션조합 사용 가능 &lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 134px;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;CodeMirror-gutters&quot; style=&quot;display: none; height: 134px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;vi, vim  파일 생성 및 편집기 (*디렉토리 생성은 mkdir)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;tail -f 
로그를 계속 보고 싶을 때는 tail -f 로 로그파일을 실시간업데이트 확인 가능 &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>linux</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/30</guid>
      <comments>https://infosul.tistory.com/30#entry30comment</comments>
      <pubDate>Sat, 1 Jun 2019 01:15:44 +0900</pubDate>
    </item>
    <item>
      <title>일본어 단어 :  4월 업무 중 습득</title>
      <link>https://infosul.tistory.com/29</link>
      <description>&lt;p&gt;了解　りょうかい 양해&lt;br&gt;折り返し　おりかえし 회답, 되접다 =引き返し&lt;br&gt;ハガキ 엽서&lt;br&gt;締め日　しめび　마감일&lt;br&gt;預かり あずかり　보관, 맡아 둠&lt;br&gt;買取　かいとり　매입&lt;br&gt;下記通り かきとおり아래대로&lt;br&gt;復旧 ふっきゅう　복구&lt;br&gt;直近 ちょっきん　현시점에서 바로 가까운 것, 최근 관련 된 가까운 ...&lt;br&gt;挙動 きょどう　거동&lt;br&gt;説明させて頂きます 설명해드리겠습니다. - 겸양어&lt;br&gt;お電話頂ければと思います。전화를 걸어주세요(직역: 전화를 받을수 있다면이라고 생각합니다.). - 겸양어&lt;br&gt;振込　ふりこみ　납입하다&lt;br&gt;受注 じゅちゅう　수주(주문을받음)&lt;br&gt;脱会탈퇴/회원가입&lt;br&gt;規約 규약&lt;br&gt;督促 とくそく 독촉&lt;br&gt;在庫　ざいこ　재고&lt;br&gt;入庫　にゅうこ  입고&lt;br&gt;預り金　あずかりきん　예치금&lt;br&gt;預け入れ　あずけいれ　예금, 예치, 예입&lt;br&gt;審査 심사 しんさ&lt;br&gt;受付 접수 　うけつけ&lt;br&gt;代金引換　だいきんひきかえ 운송+결제 : 일본에만 존재하는 결제 시스템, 배달원이 물건을 주면서 대금을 상환받음&lt;br&gt;債権残　さいけんざん　채권 잔액&lt;br&gt;棚卸更新　たなおろしこうしん 재고(정리/조사)갱신&lt;br&gt;採番 さいばん　채번: 데이터 관리를 위해 고유 번호를 부여하는 것&lt;br&gt;後払い　あとばらい　후불&lt;br&gt;前払い　まえばらい　선불&lt;br&gt;出荷　しゅっか 출하&lt;br&gt;抜く　ぬく　뽑아내다. 빼내다&lt;br&gt;稼働　かどう　가동&lt;/p&gt;</description>
      <category>일본어</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/29</guid>
      <comments>https://infosul.tistory.com/29#entry29comment</comments>
      <pubDate>Sun, 5 May 2019 21:28:22 +0900</pubDate>
    </item>
    <item>
      <title>리눅스 명령어  sudo, apt, nano</title>
      <link>https://infosul.tistory.com/27</link>
      <description>&lt;p&gt;-sudo&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;* 유닉스기반의 컴퓨터는 다중사용자 시스템이었기 때문에 sudo 라는 명령어가 존재하게 됨&amp;nbsp;&lt;/p&gt;
&lt;p&gt;sudo = super user do 의 줄임말,&amp;nbsp; - 모든 권한을 가진 유저임&lt;/p&gt;
&lt;p&gt;특별한 권한이 필요한 동작을 할 때 sudo 를 사용함.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;예 )&amp;nbsp; apt-get install git&amp;nbsp; git 설치 명령어 (permission denied- sudo 사용 필요함)&lt;/p&gt;
&lt;p&gt;앞에 sudo 를 붙인 후 실행해야 설치가 된다. (임시로 해당 명령어만을 super user 로 실행하라는 의미)&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;- apt : 패키지 매니저( =앱스토어 같은 것 )&amp;nbsp;&lt;/p&gt;
&lt;p&gt;apt-get update;&amp;nbsp; 설치 가능 프로그램 목록 업데이트(업그레이드가 아님!)&lt;/p&gt;
&lt;p&gt;apt-cache search [검색 프로그램 명]&amp;nbsp; /설치를 원하는 프로그램을 검색&lt;/p&gt;
&lt;p&gt;apt-get install [설치 프로그램명] -프로그램 설치&amp;nbsp;&lt;/p&gt;
&lt;p&gt;sudo apt-get upgrade [설치프로그램명] - 업데이트&amp;nbsp;&lt;/p&gt;
&lt;p&gt;apt-get remove [설치된 프로그램명] 삭제하기&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;-nano 파일 편집&amp;nbsp;&lt;/p&gt;
&lt;p&gt;nano 엔터를 치고 들어가면 파일이 편집 화면이 만들어짐 ..&amp;nbsp;&lt;/p&gt;
&lt;p&gt;* 저장은 Ctrl+o (write out): 쓰기&amp;nbsp;&lt;/p&gt;
&lt;p&gt;* 복사기능이 없음 컷, 언컷을 이용하여 복붙을 이용할 수 있음&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>기타</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/27</guid>
      <comments>https://infosul.tistory.com/27#entry27comment</comments>
      <pubDate>Tue, 30 Apr 2019 14:36:44 +0900</pubDate>
    </item>
    <item>
      <title>intellij 초기 설정법 링크</title>
      <link>https://infosul.tistory.com/26</link>
      <description>&lt;p&gt;&lt;a href=&quot;https://sshinbdev.tistory.com/61&quot;&gt;https://sshinbdev.tistory.com/61&lt;/a&gt;&lt;/p&gt;</description>
      <category>spring</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/26</guid>
      <comments>https://infosul.tistory.com/26#entry26comment</comments>
      <pubDate>Wed, 3 Apr 2019 23:26:35 +0900</pubDate>
    </item>
    <item>
      <title>스프링 부트 설정원리</title>
      <link>https://infosul.tistory.com/25</link>
      <description>
&lt;meta charset=&quot;UTF-8&quot;&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width initial-scale=1&quot;&gt;
&lt;title&gt;스프링 부트 실행1 &lt;/title&gt;&lt;link href=&quot;https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&amp;amp;subset=latin,latin-ext&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;&lt;style type=&quot;text/css&quot;&gt;html {overflow-x: initial !important;}:root { --bg-color:#ffffff; --text-color:#333333; --select-text-bg-color:#B5D6FC; --select-text-font-color:auto; --monospace:&quot;Lucida Console&quot;,Consolas,&quot;Courier&quot;,monospace; }
html { font-size: 14px; background-color: var(--bg-color); color: var(--text-color); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body { margin: 0px; padding: 0px; height: auto; bottom: 0px; top: 0px; left: 0px; right: 0px; font-size: 1rem; line-height: 1.42857; overflow-x: hidden; background: inherit; }
iframe { margin: auto; }
a.url { word-break: break-all; }
a:active, a:hover { outline: 0px; }
.in-text-selection, ::selection { text-shadow: none; background: var(--select-text-bg-color); color: var(--select-text-font-color); }
#write { margin: 0px auto; height: auto; width: inherit; word-break: normal; word-wrap: break-word; position: relative; white-space: normal; overflow-x: visible; padding-top: 40px; }
#write.first-line-indent p { text-indent: 2em; }
#write.first-line-indent li p, #write.first-line-indent p * { text-indent: 0px; }
#write.first-line-indent li { margin-left: 2em; }
.for-image #write { padding-left: 8px; padding-right: 8px; }
body.typora-export { padding-left: 30px; padding-right: 30px; }
.typora-export .footnote-line, .typora-export li, .typora-export p { white-space: pre-wrap; }
@media screen and (max-width: 500px) {
  body.typora-export { padding-left: 0px; padding-right: 0px; }
  #write { padding-left: 20px; padding-right: 20px; }
  .CodeMirror-sizer { margin-left: 0px !important; }
  .CodeMirror-gutters { display: none !important; }
}
#write li &gt; figure:first-child { margin-top: -20px; }
#write ol, #write ul { position: relative; }
img { max-width: 100%; vertical-align: middle; }
button, input, select, textarea { color: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; }
input[type=&quot;checkbox&quot;], input[type=&quot;radio&quot;] { line-height: normal; padding: 0px; }
*, ::after, ::before { box-sizing: border-box; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p, #write pre { width: inherit; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p { position: relative; }
h1, h2, h3, h4, h5, h6 { break-after: avoid-page; break-inside: avoid; orphans: 2; }
p { orphans: 4; }
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }
.md-math-block, .md-rawblock, h1, h2, h3, h4, h5, h6, p { margin-top: 1rem; margin-bottom: 1rem; }
.hidden { display: none; }
.md-blockmeta { color: rgb(204, 204, 204); font-weight: 700; font-style: italic; }
a { cursor: pointer; }
sup.md-footnote { padding: 2px 4px; background-color: rgba(238, 238, 238, 0.7); color: rgb(85, 85, 85); border-radius: 4px; cursor: pointer; }
sup.md-footnote a, sup.md-footnote a:hover { color: inherit; text-transform: inherit; text-decoration: inherit; }
#write input[type=&quot;checkbox&quot;] { cursor: pointer; width: inherit; height: inherit; }
figure { overflow-x: auto; margin: 1.2em 0px; max-width: calc(100% + 16px); padding: 0px; }
figure &gt; table { margin: 0px !important; }
tr { break-inside: avoid; break-after: auto; }
thead { display: table-header-group; }
table { border-collapse: collapse; border-spacing: 0px; width: 100%; overflow: auto; break-inside: auto; text-align: left; }
table.md-table td { min-width: 32px; }
.CodeMirror-gutters { border-right: 0px; background-color: inherit; }
.CodeMirror { text-align: left; }
.CodeMirror-placeholder { opacity: 0.3; }
.CodeMirror pre { padding: 0px 4px; }
.CodeMirror-lines { padding: 0px; }
div.hr:focus { cursor: none; }
#write pre { white-space: pre-wrap; }
#write.fences-no-line-wrapping pre { white-space: pre; }
#write pre.ty-contain-cm { white-space: normal; }
.CodeMirror-gutters { margin-right: 4px; }
.md-fences { font-size: 0.9rem; display: block; break-inside: avoid; text-align: left; overflow: visible; white-space: pre; background: inherit; position: relative !important; }
.md-diagram-panel { width: 100%; margin-top: 10px; text-align: center; padding-top: 0px; padding-bottom: 8px; overflow-x: auto; }
#write .md-fences.mock-cm { white-space: pre-wrap; }
.md-fences.md-fences-with-lineno { padding-left: 0px; }
#write.fences-no-line-wrapping .md-fences.mock-cm { white-space: pre; overflow-x: auto; }
.md-fences.mock-cm.md-fences-with-lineno { padding-left: 8px; }
.CodeMirror-line, twitterwidget { break-inside: avoid; }
.footnotes { opacity: 0.8; font-size: 0.9rem; margin-top: 1em; margin-bottom: 1em; }
.footnotes + .footnotes { margin-top: 0px; }
.md-reset { margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: top; background: 0px 0px; text-decoration: none; text-shadow: none; float: none; position: static; width: auto; height: auto; white-space: nowrap; cursor: inherit; -webkit-tap-highlight-color: transparent; line-height: normal; font-weight: 400; text-align: left; box-sizing: content-box; direction: ltr; }
li div { padding-top: 0px; }
blockquote { margin: 1rem 0px; }
li .mathjax-block, li p { margin: 0.5rem 0px; }
li { margin: 0px; position: relative; }
blockquote &gt; :last-child { margin-bottom: 0px; }
blockquote &gt; :first-child, li &gt; :first-child { margin-top: 0px; }
.footnotes-area { color: rgb(136, 136, 136); margin-top: 0.714rem; padding-bottom: 0.143rem; white-space: normal; }
#write .footnote-line { white-space: pre-wrap; }
@media print {
  body, html { border: 1px solid transparent; height: 99%; break-after: avoid; break-before: avoid; }
  #write { margin-top: 0px; padding-top: 0px; border-color: transparent !important; }
  .typora-export * { -webkit-print-color-adjust: exact; }
  html.blink-to-pdf { font-size: 13px; }
  .typora-export #write { padding-left: 32px; padding-right: 32px; padding-bottom: 0px; break-after: avoid; }
  .typora-export #write::after { height: 0px; }
  @page { margin: 20mm 0px; }
}
.footnote-line { margin-top: 0.714em; font-size: 0.7em; }
a img, img a { cursor: pointer; }
pre.md-meta-block { font-size: 0.8rem; min-height: 0.8rem; white-space: pre-wrap; background: rgb(204, 204, 204); display: block; overflow-x: hidden; }
p &gt; .md-image:only-child:not(.md-img-error) img, p &gt; img:only-child { display: block; margin: auto; }
p &gt; .md-image:only-child { display: inline-block; width: 100%; }
#write .MathJax_Display { margin: 0.8em 0px 0px; }
.md-math-block { width: 100%; }
.md-math-block:not(:empty)::after { display: none; }
[contenteditable=&quot;true&quot;]:active, [contenteditable=&quot;true&quot;]:focus { outline: 0px; box-shadow: none; }
.md-task-list-item { position: relative; list-style-type: none; }
.task-list-item.md-task-list-item { padding-left: 0px; }
.md-task-list-item &gt; input { position: absolute; top: 0px; left: 0px; margin-left: -1.2em; margin-top: calc(1em - 10px); }
.math { font-size: 1rem; }
.md-toc { min-height: 3.58rem; position: relative; font-size: 0.9rem; border-radius: 10px; }
.md-toc-content { position: relative; margin-left: 0px; }
.md-toc-content::after, .md-toc::after { display: none; }
.md-toc-item { display: block; color: rgb(65, 131, 196); }
.md-toc-item a { text-decoration: none; }
.md-toc-inner:hover { text-decoration: underline; }
.md-toc-inner { display: inline-block; cursor: pointer; }
.md-toc-h1 .md-toc-inner { margin-left: 0px; font-weight: 700; }
.md-toc-h2 .md-toc-inner { margin-left: 2em; }
.md-toc-h3 .md-toc-inner { margin-left: 4em; }
.md-toc-h4 .md-toc-inner { margin-left: 6em; }
.md-toc-h5 .md-toc-inner { margin-left: 8em; }
.md-toc-h6 .md-toc-inner { margin-left: 10em; }
@media screen and (max-width: 48em) {
  .md-toc-h3 .md-toc-inner { margin-left: 3.5em; }
  .md-toc-h4 .md-toc-inner { margin-left: 5em; }
  .md-toc-h5 .md-toc-inner { margin-left: 6.5em; }
  .md-toc-h6 .md-toc-inner { margin-left: 8em; }
}
a.md-toc-inner { font-size: inherit; font-style: inherit; font-weight: inherit; line-height: inherit; }
.footnote-line a:not(.reversefootnote) { color: inherit; }
.md-attr { display: none; }
.md-fn-count::after { content: &quot;.&quot;; }
code, pre, samp, tt { font-family: var(--monospace); }
kbd { margin: 0px 0.1em; padding: 0.1em 0.6em; font-size: 0.8em; color: rgb(36, 39, 41); background: rgb(255, 255, 255); border: 1px solid rgb(173, 179, 185); border-radius: 3px; box-shadow: rgba(12, 13, 14, 0.2) 0px 1px 0px, rgb(255, 255, 255) 0px 0px 0px 2px inset; white-space: nowrap; vertical-align: middle; }
.md-comment { color: rgb(162, 127, 3); opacity: 0.8; font-family: var(--monospace); }
code { text-align: left; vertical-align: initial; }
a.md-print-anchor { white-space: pre !important; border-width: initial !important; border-style: none !important; border-color: initial !important; display: inline-block !important; position: absolute !important; width: 1px !important; right: 0px !important; outline: 0px !important; background: 0px 0px !important; text-decoration: initial !important; text-shadow: initial !important; }
.md-inline-math .MathJax_SVG .noError { display: none !important; }
.html-for-mac .inline-math-svg .MathJax_SVG { vertical-align: 0.2px; }
.md-math-block .MathJax_SVG_Display { text-align: center; margin: 0px; position: relative; text-indent: 0px; max-width: none; max-height: none; min-height: 0px; min-width: 100%; width: auto; overflow-y: hidden; display: block !important; }
.MathJax_SVG_Display, .md-inline-math .MathJax_SVG_Display { width: auto; margin: inherit; display: inline-block !important; }
.MathJax_SVG .MJX-monospace { font-family: var(--monospace); }
.MathJax_SVG .MJX-sans-serif { font-family: sans-serif; }
.MathJax_SVG { display: inline; font-style: normal; font-weight: 400; line-height: normal; zoom: 90%; text-indent: 0px; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0px; min-height: 0px; border: 0px; padding: 0px; margin: 0px; }
.MathJax_SVG * { transition: none; }
.MathJax_SVG_Display svg { vertical-align: middle !important; margin-bottom: 0px !important; }
.os-windows.monocolor-emoji .md-emoji { font-family: &quot;Segoe UI Symbol&quot;, sans-serif; }
.md-diagram-panel &gt; svg { max-width: 100%; }
[lang=&quot;mermaid&quot;] svg, [lang=&quot;flow&quot;] svg { max-width: 100%; }
[lang=&quot;mermaid&quot;] .node text { font-size: 1rem; }
table tr th { border-bottom: 0px; }
video { max-width: 100%; display: block; margin: 0px auto; }
iframe { max-width: 100%; width: 100%; border: none; }
.highlight td, .highlight tr { border: 0px; }


:root { --side-bar-bg-color: #fafafa; --control-text-color: #777; }
html { font-size: 16px; }
body { font-family: &quot;Open Sans&quot;, &quot;Clear Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; color: rgb(51, 51, 51); line-height: 1.6; }
#write { max-width: 860px; margin: 0px auto; padding: 30px 30px 100px; }
#write &gt; ul:first-child, #write &gt; ol:first-child { margin-top: 30px; }
a { color: rgb(65, 131, 196); }
h1, h2, h3, h4, h5, h6 { position: relative; margin-top: 1rem; margin-bottom: 1rem; font-weight: bold; line-height: 1.4; cursor: text; }
h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor { text-decoration: none; }
h1 tt, h1 code { font-size: inherit; }
h2 tt, h2 code { font-size: inherit; }
h3 tt, h3 code { font-size: inherit; }
h4 tt, h4 code { font-size: inherit; }
h5 tt, h5 code { font-size: inherit; }
h6 tt, h6 code { font-size: inherit; }
h1 { padding-bottom: 0.3em; font-size: 2.25em; line-height: 1.2; border-bottom: 1px solid rgb(238, 238, 238); }
h2 { padding-bottom: 0.3em; font-size: 1.75em; line-height: 1.225; border-bottom: 1px solid rgb(238, 238, 238); }
h3 { font-size: 1.5em; line-height: 1.43; }
h4 { font-size: 1.25em; }
h5 { font-size: 1em; }
h6 { font-size: 1em; color: rgb(119, 119, 119); }
p, blockquote, ul, ol, dl, table { margin: 0.8em 0px; }
li &gt; ol, li &gt; ul { margin: 0px; }
hr { height: 2px; padding: 0px; margin: 16px 0px; background-color: rgb(231, 231, 231); border: 0px none; overflow: hidden; box-sizing: content-box; }
li p.first { display: inline-block; }
ul, ol { padding-left: 30px; }
ul:first-child, ol:first-child { margin-top: 0px; }
ul:last-child, ol:last-child { margin-bottom: 0px; }
blockquote { border-left: 4px solid rgb(223, 226, 229); padding: 0px 15px; color: rgb(119, 119, 119); }
blockquote blockquote { padding-right: 0px; }
table { padding: 0px; word-break: initial; }
table tr { border-top: 1px solid rgb(223, 226, 229); margin: 0px; padding: 0px; }
table tr:nth-child(2n), thead { background-color: rgb(248, 248, 248); }
table tr th { font-weight: bold; border-width: 1px 1px 0px; border-top-style: solid; border-right-style: solid; border-left-style: solid; border-top-color: rgb(223, 226, 229); border-right-color: rgb(223, 226, 229); border-left-color: rgb(223, 226, 229); border-image: initial; border-bottom-style: initial; border-bottom-color: initial; text-align: left; margin: 0px; padding: 6px 13px; }
table tr td { border: 1px solid rgb(223, 226, 229); text-align: left; margin: 0px; padding: 6px 13px; }
table tr th:first-child, table tr td:first-child { margin-top: 0px; }
table tr th:last-child, table tr td:last-child { margin-bottom: 0px; }
.CodeMirror-lines { padding-left: 4px; }
.code-tooltip { box-shadow: rgba(0, 28, 36, 0.3) 0px 1px 1px 0px; border-top: 1px solid rgb(238, 242, 242); }
.md-fences, code, tt { border: 1px solid rgb(231, 234, 237); background-color: rgb(248, 248, 248); border-radius: 3px; padding: 2px 4px 0px; font-size: 0.9em; }
code { background-color: rgb(243, 244, 244); padding: 0px 2px; }
.md-fences { margin-bottom: 15px; margin-top: 15px; padding-top: 8px; padding-bottom: 6px; }
.md-task-list-item &gt; input { margin-left: -1.3em; }
@media print {
  html { font-size: 13px; }
  table, pre { break-inside: avoid; }
  pre { word-wrap: break-word; }
}
.md-fences { background-color: rgb(248, 248, 248); }
#write pre.md-meta-block { padding: 1rem; font-size: 85%; line-height: 1.45; background-color: rgb(247, 247, 247); border: 0px; border-radius: 3px; color: rgb(119, 119, 119); margin-top: 0px !important; }
.mathjax-block &gt; .code-tooltip { bottom: 0.375rem; }
.md-mathjax-midline { background: rgb(250, 250, 250); }
#write &gt; h3.md-focus::before { left: -1.5625rem; top: 0.375rem; }
#write &gt; h4.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
#write &gt; h5.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
#write &gt; h6.md-focus::before { left: -1.5625rem; top: 0.285714rem; }
.md-image &gt; .md-meta { border-radius: 3px; padding: 2px 0px 0px 4px; font-size: 0.9em; color: inherit; }
.md-tag { color: rgb(167, 167, 167); opacity: 1; }
.md-toc { margin-top: 20px; padding-bottom: 20px; }
.sidebar-tabs { border-bottom: none; }
#typora-quick-open { border: 1px solid rgb(221, 221, 221); background-color: rgb(248, 248, 248); }
#typora-quick-open-item { background-color: rgb(250, 250, 250); border-color: rgb(254, 254, 254) rgb(229, 229, 229) rgb(229, 229, 229) rgb(238, 238, 238); border-style: solid; border-width: 1px; }
.on-focus-mode blockquote { border-left-color: rgba(85, 85, 85, 0.12); }
header, .context-menu, .megamenu-content, footer { font-family: &quot;Segoe UI&quot;, Arial, sans-serif; }
.file-node-content:hover .file-node-icon, .file-node-content:hover .file-node-open-state { visibility: visible; }
.mac-seamless-mode #typora-sidebar { background-color: var(--side-bar-bg-color); }
.md-lang { color: rgb(180, 101, 77); }
.html-for-mac .context-menu { --item-hover-bg-color: #E6F0FE; }
#md-notification .btn { border: 0px; }
.dropdown-menu .divider { border-color: rgb(229, 229, 229); }





 .typora-export li, .typora-export p, .typora-export,  .footnote-line {white-space: normal;} 
&lt;/style&gt;


&lt;div id=&quot;write&quot; class=&quot;is-node&quot;&gt;&lt;p cid=&quot;n0&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;md-expand&quot;&gt;스프링 부트 소개 &lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n2&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n3&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n4&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;opinated view - 가장 많이 쓰이는 기본 설정을 제공(컨벤션)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n5&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n6&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;3rd party 기본 제공(톰캣)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n7&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n8&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;더 빠르고 폭넓은 개발 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n9&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n10&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;빠른 설정의 변경 가능 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p cid=&quot;n11&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block md-focus&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;/p&gt;&lt;h3 cid=&quot;n12&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;스프링 부트 실행&lt;/span&gt;&lt;/h3&gt;&lt;p cid=&quot;n13&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;spring starter project 생성하면 이미 다 추가되어있음&lt;/span&gt;&lt;/p&gt;&lt;ol class=&quot;ol-list&quot; start=&quot;&quot; cid=&quot;n14&quot; mdtype=&quot;list&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n15&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n16&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;pom.xml에 추가되는 3가지! &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;blockquote cid=&quot;n17&quot; mdtype=&quot;blockquote&quot;&gt;&lt;p cid=&quot;n18&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;parent&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;org.springframework.boot&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;spring-boot-starter-parent&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;version&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;2.1.3.RELEASE&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;relativePath/&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt; &lt;/span&gt;&lt;span md-inline=&quot;comment&quot; class=&quot;md-comment&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;!-- lookup parent from repository --&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;	&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/parent&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote cid=&quot;n19&quot; mdtype=&quot;blockquote&quot;&gt;&lt;p cid=&quot;n20&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;dependencies&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;org.springframework.boot&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;spring-boot-starter-web&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote cid=&quot;n21&quot; mdtype=&quot;blockquote&quot;&gt;&lt;p cid=&quot;n22&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;build&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;plugins&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;plugin&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;				&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;org.springframework.boot&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;				&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;spring-boot-maven-plugin&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/plugin&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/plugins&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;	&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/build&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p cid=&quot;n23&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;이 3가지로 전부 다 추가됨 개꿀...&lt;/span&gt;&lt;/p&gt;&lt;h3 cid=&quot;n24&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;부트 프로젝트 구조&lt;/span&gt;&lt;/h3&gt;&lt;p cid=&quot;n25&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;resources&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n26&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n27&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n28&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;/root로  전부 참조할 수 있음 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n29&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n30&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;@springBootApplication 을 붙인 main() 은 최상위(디폴트)가 좋다 &lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n31&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n32&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n33&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;이 어노테이션이 붙은 패키지 아래의 것들을 다 componentScan을 시작하여 빈으로 등록하기 때문!&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3 cid=&quot;n36&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;부트의 dependency 관리법&lt;/span&gt;&lt;/h3&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n44&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n46&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n47&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;parents로 관리(starter-parent)&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n51&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n50&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n48&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;관리하는 의존성이 줄어든다(개편함 일이 줄어듬)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n54&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n52&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;이미 관리하는 의존성이면 버전을 표시하지 않아도 알아서 상속받아옴 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n57&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n55&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;리소스, 플러그인 설정 자동 세팅 등이 되니까 편리함!&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n60&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n58&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;dependency management로 직접 설정이 되지만 부트관리 설정이 안 따라오기 때문에 비추 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n63&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n61&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;의존성 추가해보기 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;blockquote cid=&quot;n74&quot; mdtype=&quot;blockquote&quot;&gt;&lt;p cid=&quot;n75&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;org.springframework.boot&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;			&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;spring-boot-starter-data-jpa&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;tab&quot; class=&quot;md-tab&quot; style=&quot;display: inline-block; white-space: pre;&quot;&gt;		&lt;/span&gt;&lt;span md-inline=&quot;tag&quot; class=&quot;md-tag md-raw-inline&quot; spellcheck=&quot;false&quot; style=&quot;font-family: var(--monospace);&quot;&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p cid=&quot;n41&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;아티팩트 아이디 자동완성으로 뜨는 경우는 버전 명시 하지 않아도 알아서 들어옴!&lt;/span&gt;&lt;/p&gt;&lt;p cid=&quot;n79&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;하지만 버전을 명시하는 것이 가장 best practice 이기 때문에 확인하여 가져오는 게 좋음&lt;/span&gt;&lt;/p&gt;&lt;h3 class=&quot;md-end-block md-heading&quot; mdtype=&quot;heading&quot; cid=&quot;n83&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;spring,  java 버전 내가 원하는 걸로 바꾸기 &lt;/span&gt;&lt;/h3&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n85&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n87&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n88&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;properties 에서 버전을 명시해주면 바뀜 !&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;오버라이딩 되는 원리로 버전이 바뀜!&lt;/span&gt;&lt;span md-inline=&quot;linebreak&quot; class=&quot;md-linebreak&quot; style=&quot;font-family: var(--monospace); opacity: 0.6; color: inherit;&quot;&gt;  &lt;span class=&quot;md-linebreak-mark&quot; style=&quot;font-family: var(--monospace); opacity: 0.6; color: inherit;&quot;&gt;&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3 cid=&quot;n99&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;자동설정&lt;/span&gt;&lt;/h3&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n189&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n190&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n191&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;@SpringbootApplication&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n195&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n194&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n192&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;&quot;&gt;configuration +componentScan+autoConfiguration 3개 합친거같은 개념쓰&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n139&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n140&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n141&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;@EnableAutoConfiguration (@SpringbootApplication에 포함되어 있음)&lt;/span&gt;&lt;span md-inline=&quot;softbreak&quot; class=&quot;md-softbreak&quot;&gt;
&lt;/span&gt;&lt;span md-inline=&quot;plain&quot;&gt;스프링 부트는 빈을 두번 등록함!&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n152&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n150&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n148&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;1단계 : @componentScan&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n187&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n185&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n183&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;@component 를 가진 class 스캔하여 빈으로 등록 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n155&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n153&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;2단계 : @EnableAutoConfiguration&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n198&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n196&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot;&gt;@configuration  자바 설정 파일임 ...&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n203&quot; mdtype=&quot;list&quot; data-mark=&quot;-&quot; style=&quot;padding-left: 30px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n202&quot; mdtype=&quot;list_item&quot;&gt;&lt;p cid=&quot;n200&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;white-space: pre-wrap;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;md-expand&quot;&gt;@confitional~ 로 시작하는 어노테이션과 함께 쓰이는데 이는 조건부로 빈이 등록되는 조건을 이야기함 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>spring</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/25</guid>
      <comments>https://infosul.tistory.com/25#entry25comment</comments>
      <pubDate>Tue, 5 Mar 2019 22:43:26 +0900</pubDate>
    </item>
    <item>
      <title>회사설명서 모르는 단어들</title>
      <link>https://infosul.tistory.com/24</link>
      <description>&lt;p&gt;[190302] 1~5장 단어&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1．　拠点　きょてん　거점&lt;/p&gt;&lt;p&gt;2．　創出　そうしゅつ　창출&lt;/p&gt;&lt;p&gt;3．　適合　てきごう　적합&lt;/p&gt;&lt;p&gt;4．　証　しょう　あかし　증명하다. 증거&amp;nbsp;&lt;/p&gt;&lt;p&gt;5．　お寄せください　およせください　문의해주세요&lt;/p&gt;&lt;p&gt;6．　牽引　けんいん　견인&lt;/p&gt;&lt;p&gt;7．　着実　ちゃくじつ　착실&lt;/p&gt;&lt;p&gt;8．　立ち上げ　たちあげ　설립&lt;/p&gt;&lt;p&gt;9．　集約化　しゅうやくか　집약화&lt;/p&gt;&lt;p&gt;10．　エキスパート　전문가&amp;nbsp;&lt;/p&gt;&lt;p&gt;11．　見据える　みすえる　응시하다, (앞을)내다보다.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;[190305] 단어 ~21p&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;1．　軽減　けいげん　경감&lt;/p&gt;&lt;p&gt;2．　品質向上　ひんしつこうじょう　품질향상&lt;/p&gt;&lt;p&gt;3．　新規　しんき&amp;nbsp; 신규&amp;nbsp;&lt;/p&gt;&lt;p&gt;4．　最低限　さいていげん　최저한으로&amp;nbsp;&lt;/p&gt;&lt;p&gt;5．　揃える　そろえる　모이다&amp;nbsp;&lt;/p&gt;&lt;p&gt;6．　展示　てんじ　전시&lt;/p&gt;&lt;p&gt;7．　配送料　はいそうりょう　배송료&lt;/p&gt;&lt;p&gt;8．　手数料　てすうりょう　수수료&lt;/p&gt;&lt;p&gt;9．　問合せ　といあわせ　조회, 문의&amp;nbsp;&lt;/p&gt;&lt;p&gt;10．　返品・返金　へんぴん・へんきん　반품/환불&amp;nbsp;&lt;/p&gt;&lt;p&gt;11．　直営　ちょくえい　직영&amp;nbsp;&lt;/p&gt;&lt;p&gt;12．　担う　になう　떠맡다, 지다, 매다 (책임, 의무를)&lt;/p&gt;&lt;p&gt;13．　SEO　검색엔진 최적화 (search engine optimization)&lt;/p&gt;&lt;p&gt;14．　卸売り　おろしうり　도매&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>일본어</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/24</guid>
      <comments>https://infosul.tistory.com/24#entry24comment</comments>
      <pubDate>Sat, 2 Mar 2019 17:36:02 +0900</pubDate>
    </item>
    <item>
      <title>[190228]今日の単語</title>
      <link>https://infosul.tistory.com/23</link>
      <description>&lt;p&gt;&lt;b&gt;ゆくゆく 장래는, 가는 도중, 가면서&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;通訳 （つうやく）　통역&lt;/p&gt;&lt;p&gt;繰り返す　되돌려준다.&lt;/p&gt;&lt;p&gt;~における　~의 경우의, ~의&amp;nbsp;&lt;/p&gt;&lt;p&gt;模索する (もさく）모색하다&lt;/p&gt;&lt;p&gt;音声認識機能　（おんせいにんしききのう）음성인식기능&lt;/p&gt;&lt;p&gt;&lt;b&gt;遠からぬ　（とおからぬ）멀지 않은&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;セクレタリー 　비서&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;組み込む （くみこむ）짜 넣다. 편입하다.&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;うがい 양치&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;皮肉なことに（역설적이게도, ..)&lt;/b&gt;&lt;/p&gt;&lt;p&gt;ワクチン　백신&amp;nbsp; すみすみまで&lt;/p&gt;&lt;p&gt;なわとび　줄넘기&amp;nbsp;&lt;/p&gt;&lt;p&gt;筋肉トレーニング　근육운동(筋トレ）&lt;/p&gt;&lt;p&gt;소극적인 사람 しょうきょくてき 消極的&lt;/p&gt;&lt;p&gt;&lt;b&gt;先入観　선입관&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;宿泊教室　수련회&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;甘酸っぱい 새콤달콤한 (あまずっぱい）&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;환절기 季節の変わり目&lt;/b&gt;&lt;/p&gt;&lt;p&gt;少なくとも　=せめて&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;-----------뭔가 묘하게 헷갈림 얘들은 ㅜ&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;率直　そっちょく&amp;nbsp; 솔직&lt;/p&gt;&lt;p&gt;正確　せいかく&amp;nbsp; &amp;nbsp;정확&lt;/p&gt;&lt;p&gt;正直　しょうじき&amp;nbsp; 정직&lt;/p&gt;&lt;p&gt;--------------------------------------------&lt;/p&gt;</description>
      <category>일본어</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/23</guid>
      <comments>https://infosul.tistory.com/23#entry23comment</comments>
      <pubDate>Thu, 28 Feb 2019 17:41:51 +0900</pubDate>
    </item>
    <item>
      <title>토비의 스프링 2장 테스트(코드없음) 내용요약</title>
      <link>https://infosul.tistory.com/22</link>
      <description>&lt;h1 id=&quot;2%EC%9E%A5-%ED%85%8C%EC%8A%A4%ED%8A%B8&quot; data-line=&quot;0&quot; class=&quot;code-line&quot; style=&quot;padding-bottom: 0.3em; line-height: 1.2; border-bottom: 1px solid rgba(255, 255, 255, 0.18); font-weight: normal; border-top-color: rgba(255, 255, 255, 0.18); border-right-color: rgba(255, 255, 255, 0.18); border-left-color: rgba(255, 255, 255, 0.18); position: relative; color: rgb(212, 212, 212); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe WPC&amp;quot;, &amp;quot;Segoe UI&amp;quot;, HelveticaNeue-Light, Ubuntu, &amp;quot;Droid Sans&amp;quot;, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/h1&gt;&lt;h1 cid=&quot;n0&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 2.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.2; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;md-expand&quot; style=&quot;box-sizing: border-box;&quot;&gt;토비의 스프링 2장 테스트&lt;/span&gt;&lt;/h1&gt;&lt;h2 cid=&quot;n2&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.75em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.225; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트란?&lt;/span&gt;&lt;/h2&gt;&lt;p cid=&quot;n3&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin: 0.8em 0px; white-space: pre-wrap; width: inherit; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt; 의도대로 코드가 동작하는지 확인하는 것, 코드의 결함 제거를 위한 작업&lt;/span&gt;&lt;/p&gt;&lt;h2 cid=&quot;n4&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.75em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.225; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;Test의 결과 종류&lt;/span&gt;&lt;/h2&gt;&lt;ol class=&quot;ol-list&quot; start=&quot;&quot; cid=&quot;n5&quot; mdtype=&quot;list&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n6&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n7&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 에러 : 테스트가 완료되지 않고, 진행 중 에러 발생&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n8&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n9&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 실패 : 테스트가 완료되었으나 기대되는 값이 아닌 결과값이 나옴&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n10&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n11&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 성공 : 기대하는(예상되는) 결과값이 나오는 테스트 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h2 cid=&quot;n12&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.75em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.225; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;TDD(Test driven development)&lt;/span&gt;&lt;/h2&gt;&lt;p cid=&quot;n13&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin: 0.8em 0px; white-space: pre-wrap; width: inherit; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 주도 개발 &lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n14&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n15&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n16&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;실패한 코드를 성공시키기 위한 것이 아니면 만들지 않는다. &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n17&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n18&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;자연스럽게 단위 테스트를 만들게 되는 개발법&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 cid=&quot;n19&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.75em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.225; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;JUnit(Java Testing framework 자바 테스팅 지원도구 )&lt;/span&gt;&lt;/h2&gt;&lt;p cid=&quot;n20&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin: 0.8em 0px; white-space: pre-wrap; width: inherit; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 수행 순서&lt;/span&gt;&lt;/p&gt;&lt;blockquote cid=&quot;n21&quot; mdtype=&quot;blockquote&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; border-left-width: 4px; border-left-color: rgb(223, 226, 229); padding-top: 0px; padding-bottom: 0px; color: rgb(119, 119, 119); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;ol class=&quot;ol-list&quot; start=&quot;&quot; cid=&quot;n22&quot; mdtype=&quot;list&quot; style=&quot;box-sizing: border-box; margin: 0px; padding-left: 30px; position: relative;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n23&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n24&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 클래스의 @Test를 전부 찾는다.&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n25&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n26&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 클래스의 ★오브젝트★ 생성(매번 새로 만듬)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n27&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n28&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;@before-&amp;gt;@Test-&amp;gt;@after 순으로 수행 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n29&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n30&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;2, 3번을 반복 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n31&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n32&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 결과 종합하여 돌려줌 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/blockquote&gt;&lt;p cid=&quot;n33&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin: 0.8em 0px; white-space: pre-wrap; width: inherit; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;@test&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n34&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n35&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n36&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;main()이 불필요함 (@test를 이용한 단위 테스트 생성 편리성)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n37&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n38&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;매쳐 사용 가능&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n39&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n40&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;특정 예외가 던져저야 성공인 test @Test(expected = 예외클래스명.class)&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p cid=&quot;n41&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin: 0.8em 0px; white-space: pre-wrap; width: inherit; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;픽스쳐 &lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n42&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n43&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n44&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트를 수행하는데 필요한 정보나 오브젝트&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n45&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n46&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;주로 인스턴스 변수로 선언하여 @before로 초기화하여 사용&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 cid=&quot;n47&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.75em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.225; cursor: text; padding-bottom: 0.3em; border-bottom: 1px solid rgb(238, 238, 238); white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 전체가 공유하는 오브젝트&lt;/span&gt;&lt;/h2&gt;&lt;blockquote cid=&quot;n48&quot; mdtype=&quot;blockquote&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; border-left-width: 4px; border-left-color: rgb(223, 226, 229); padding-top: 0px; padding-bottom: 0px; color: rgb(119, 119, 119); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;p cid=&quot;n49&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block md-focus&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;md-expand&quot; style=&quot;box-sizing: border-box;&quot;&gt;!!테스트 실행 순서가 결과에 영향을 미치면 안됨! &lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;h4 cid=&quot;n50&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.4; cursor: text; white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;1. @beforeClass (스테틱메소드) 사용&lt;/span&gt;&lt;/h4&gt;&lt;h4 cid=&quot;n51&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.4; cursor: text; white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;2. 스프링 테스트 컨텍스트 프레임워크 사용&lt;/span&gt;&lt;/h4&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n52&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n53&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n54&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;공유할 오브젝트(application context)를 인스턴스 변수로 선언 , @Autowired 붙여줌&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n55&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n56&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;테스트 클래스 레벨 어노테이션 &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;blockquote cid=&quot;n57&quot; mdtype=&quot;blockquote&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; border-left-width: 4px; border-left-color: rgb(223, 226, 229); padding-top: 0px; padding-bottom: 0px; color: rgb(119, 119, 119); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;p cid=&quot;n58&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;@Runwith(SpringJUnit4ClassRunner.class)&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote cid=&quot;n59&quot; mdtype=&quot;blockquote&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; border-left-width: 4px; border-left-color: rgb(223, 226, 229); padding-top: 0px; padding-bottom: 0px; color: rgb(119, 119, 119); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;p cid=&quot;n60&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;@ContextConfiguration(locations=&quot;/application.xml&quot;)&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;h4 cid=&quot;n61&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.4; cursor: text; white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;@DirtiesContext&lt;/span&gt;&lt;/h4&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n62&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n63&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n64&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;이 어노테이션이 붙은 클래스는 context 공유를 하지 않겠다는 뜻&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h4 cid=&quot;n65&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.4; cursor: text; white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;학습 테스트&lt;/span&gt;&lt;/h4&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n66&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n67&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n68&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;새로운 프레임워크나 기술에 대해 익히기 좋고, 호환성 검증에도 좋음&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h4 cid=&quot;n69&quot; mdtype=&quot;heading&quot; class=&quot;md-end-block md-heading&quot; style=&quot;box-sizing: border-box; break-after: avoid-page; break-inside: avoid; font-size: 1.25em; margin-top: 1rem; margin-bottom: 1rem; position: relative; line-height: 1.4; cursor: text; white-space: pre-wrap; width: inherit; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif;&quot;&gt;&lt;span md-inline=&quot;plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;버그 테스트&lt;/span&gt;&lt;/h4&gt;&lt;ul class=&quot;ul-list&quot; cid=&quot;n70&quot; mdtype=&quot;list&quot; data-mark=&quot;*&quot; style=&quot;box-sizing: border-box; margin: 0.8em 0px 0px; padding-left: 30px; position: relative; color: rgb(51, 51, 51); font-family: &amp;quot;Open Sans&amp;quot;, &amp;quot;Clear Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, sans-serif; font-size: 16px;&quot;&gt;&lt;li class=&quot;md-list-item&quot; cid=&quot;n71&quot; mdtype=&quot;list_item&quot; style=&quot;box-sizing: border-box; margin: 0px; position: relative;&quot;&gt;&lt;p cid=&quot;n72&quot; mdtype=&quot;paragraph&quot; class=&quot;md-end-block&quot; style=&quot;box-sizing: border-box; orphans: 4; margin-right: 0px; margin-bottom: 0.5rem; margin-left: 0px; white-space: pre-wrap; position: relative;&quot;&gt;&lt;span md-inline=&quot;plain&quot; class=&quot;md-expand&quot; style=&quot;box-sizing: border-box;&quot;&gt;실패하는 테스트를 만들고 그것을 보완한다. 그리고 테스트를 성공시킨다. &lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>spring</category>
      <author>SuuuuuuuL</author>
      <guid isPermaLink="true">https://infosul.tistory.com/22</guid>
      <comments>https://infosul.tistory.com/22#entry22comment</comments>
      <pubDate>Thu, 28 Feb 2019 17:02:57 +0900</pubDate>
    </item>
  </channel>
</rss>