Hello World!
Spread your wide wings 
with Java
[Spring] STS3 Darkest Dark Theme 설치 (에러 해결)
Language/Java 2024. 6. 11. 02:42 [Spring] STS3 Darkest Dark Theme 설치 (에러 해결)

Cannot complete the install because some dependencies are not satisfiable   Software being installed: a.jre.javase 10.0.0   Software currently installed: Spring Tool Suite 3.9.18.202109140905-RELEASE-e421 (org.springsource.sts.ide 3.9.18.202109140905-RELEASE-e421)   Cannot satisfy dependency:     From: Spring Tool Suite 3.9.18.202109140905-RELEASE-e421 (org.springsource.sts.ide 3.9.18.2021091409..

[Spring] STS에서 Tomcat 서버 연결
Language/Java 2024. 6. 11. 00:36 [Spring] STS에서 Tomcat 서버 연결

🚀 개발 환경▪  IDE : STS 3.9.18▪  WAS : Apache Tomcat v9.0.89   1. 😽 톰캣 (Apache Tomcat) 설치 💾 Apache Tomcat v9.0.89의 Core zip 설치 Apache Tomcat® - Apache Tomcat 9 Software DownloadsWelcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which versi..

[React] Router
Library/React 2024. 6. 10. 09:23 [React] Router

1. React Router 설치 💾 React Router 설치 명령어 npm install react-router-dom VS Code의 터미널에서 리액트 프로젝트 폴더 경로로 이동한 후 해당 명령어를 통해 설치한다.   2. React Router 정의   리액트 라우터는 리액트 애플리케이션에서 라우팅을 쉽게 할 수 있도록 도와주는 라이브러리로URL을 통해 서로 다른 컴포넌트(페이지)를 렌더링할 수 있다. 1) Routes & RouteRoutes : 여러 개의 Route를 감싸는 컴포넌트로 Route들을 관리Route : URL 경로와 해당 경로에 매핑되는 컴포넌트를 정의-> 컴포넌트에 주소값을 부여 2) LinkLink : 다른 페이지로 이동할 수 있는 링크를 만들 때 사용 태그와 비슷하지만 ..

image