server2020. 2. 4. 10:33

[MYSQL] workbench mysql version 확인방법

 

workbench -> preference -> modeling -> mysql -> default target mysql version

Posted by thdeodls85
server2020. 2. 3. 18:28

[server] com.mysql.jdbc.Driver deprecated

 

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

 

com.mysql.cj.jdbc.Driver

변경하면 된다.

Posted by thdeodls85
server2020. 2. 3. 17:44

[Tomcat] tomcat localhost are already in use 이슈해결방법

 

계속 켰다가 다시 시작하고 하다보니, 문제가 생겼다. 

 

tomcat이 계속 실행중이란다..

 

그래서 다시 stop 시켜주고 다시 키면 잘된다..

 

tomcat폴더 -> bin폴더 ->  ./shutdown.sh -> stop

tomcat폴더 -> bin폴더 -> ./startup.sh -> start

Posted by thdeodls85
server2020. 1. 29. 18:08

[eGovFrame] sample project 생성시 에러 pom.xml[eGovFrame] sample project 생성시 pom.xml 이슈해결방법

 

eGovFrame 설치 후, 잘 되었는지 확인하기 위해서, sample project 생성 했더니, pom.xml에서 빌드를 못한다.

 

marven통해서 제대로 다운받지 못 한 것이다.

 

http://maven.egovframe.kr/maven/ -> http://maven.egovframe.kr:8080/maven/

 

8080 포트를 붙여서 하면 제대로 다운된다.

 

<repository>

<id>egovframe</id>

<url>http://maven.egovframe.kr:8080/maven/</url>

<releases>

<enabled>true</enabled>

</releases>

<snapshots>

<enabled>false</enabled>

</snapshots>

</repository>

 

 

[참조] https://hclee2575.tistory.com/362

Posted by thdeodls85
server2020. 1. 29. 14:48

[eGovFrame] 설치경로[sts]  eGovFrame 설치경로

 

sts 에서 eGovFrame 설치 하기 위해서는...

 

메뉴 > Help > Install New Software

 

http://maven.egovframe.kr:8080/update/

불러오는 중입니다...

 

설치 경로 추가해주면 된다. 

Posted by thdeodls85
server2020. 1. 29. 14:33

[sts] mac에서 heap 늘리는 방법

 

finder -> SpringToolSuite4 -> 오른쪽 클릭 -> 페키지 내용보기

-> contents폴더 -> eclipse폴더 -> SpringToolSuite4.ini 열고

 

-Xms1024m
-Xmx1024m

 

이런식으로 늘려준다.

 

[참조] https://88oy.tistory.com/368

 

Posted by thdeodls85
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