server2020. 1. 29. 12:01

Spring Legacy Project[server] sts4에서 Spring Legacy Project 보이지 않는 이슈 해결방법

sts4 설치 하고 project 생성 할려고 했더니, spring폴더에 spring legacy project 보이지 않는다.

 

help -> search -> Eclipse Marketplace 에서 sts 검색 후, Spring tools 3 Add-On 설치하면 나온다.

 

'server' 카테고리의 다른 글

[sts] eGovFrame 설치경로  (0) 2020.01.29
[sts] mac에서 heap 늘리는 방법  (0) 2020.01.29
[MYSQL] workbench 설치경로  (0) 2020.01.22
[MYSQL] 계정 생성하는 방법  (0) 2020.01.22
[MYSQL] mysql root 계정 접속  (0) 2020.01.22
Posted by thdeodls85
server2020. 1. 22. 17:26

[MYSQL] workbench 설치경로

 

https://dev.mysql.com/downloads/workbench/

Posted by thdeodls85
server2020. 1. 22. 16:45

[MYSQL] 계정 생성하는 방법

 

create user username@localhost idenitified by 'password';

 

빨간색 친 부분만 변경하면 생성 된다.

Posted by thdeodls85
server2020. 1. 22. 16:43

[MYSQL] mysql root 계정 접속

 

-> cd /usr/local/mysql/bin

-> ./mysql -u root -p

 

[참조] https://daimhada.tistory.com/121

Posted by thdeodls85
server2020. 1. 22. 15:36

[MYSQL] 설치 다운경로 

 

https://dev.mysql.com/downloads/mysql/

Posted by thdeodls85
common2020. 1. 22. 10:00

[mac] 숨긴파일 보기 기능

 

commnad + . + shift 동시에 누르면 된다.

 

[참조] https://macnews.tistory.com/5286

Posted by thdeodls85
common2020. 1. 21. 18:35

[terminal] derectory 강제로 지우는 방법

 

derectory 경로까지 찾아들어 간 후

 

rm -rf <derectory name> 하면 지워진다. 

 

 

Posted by thdeodls85
common2020. 1. 21. 18:30

[github] 디렉토리 push 안되는 이슈 해결방법

예전에 다른 git에 설정이 된 폴더는 새로운 git에 올라가지 않는다.

 

그 이유는 숨긴파일에서  .git 디렉토리가 남아있기 때문이다.

 

그러면 .git 폴더를 지워주고 올리면 올라간다.

 

 

Posted by thdeodls85