Spring

[Spring] STS 오류 해결 모음

hail2y 2025. 2. 10. 10:55

1. Spring MVC Project를 생성할 수 없을 때

- 블로그에 첨부된 https-content.xml를 해당 경로에 추가하면 목록에 뜸 

https://blog.naver.com/wisejia/223365361844

 

spring sts3에서 spring mvc project 안 보이는 문제 해결 (spring3 legacy 만들기)

아래 내용은 중앙 정보기술인재개발원 학생들을 위해 만들었습니다. 다운로드가 실행되지 않는다면 알려주...

blog.naver.com

 

2. invalid thread access 

- templates를 URL을 통해 받아오지 않고 직접 워크스페이스 경로에 추가하여 해결

https://nirsa.tistory.com/405

 

[Spring] STS3에서 MVC Project를 찾을 수 없음(STS MVC Project invalid thread access, org.springframework.samples.mvc fail

STS3에서 MVC Project를 찾을 수 없음(STS MVC Project invalid thread access, org.springframework.samples.mvc failed)2024년 2월 이후 STS3 버전을 다운로드 받고 워크스페이스를 변경하면 Spring MVC Project를 찾을 수 없는 현

nirsa.tistory.com

 

3. sts 아이콘을 눌러도 실행되지 않을 때

- sts.init에서 vm(jdk경로 추가)

- [파일경로]\lib\conf? 인식할 수 없다고 하면 그에 맞게 디렉토리 경로 변경

https://blog.naver.com/moon-over/221786009031

 

[STS] 실행 시 무반응 해결 방법 | SpringToolSuite4 실행 안 됨 | Spring 실행 오류

STS에 Git 프로젝트 클론까지 마친 후, Getter / Setter를 자동으로 생성해 준다는 lombok까지 성공...

blog.naver.com

 

4. Server Apache Tomcat v9.0 at localhost failed to start.

- Tomcat 삭제 후 재설치

- 프로젝트 build path → configure build path → libraries 메뉴에서 new library로 새로운 톰캣 서버 등록

https://technote-mezza.tistory.com/51

 

[이클립스 톰캣 에러]Starting Apache Tomcat v9.0 at localhost' has encountered a problem

Starting Apache Tomcat v9.0 at localhost' has encountered a problem. Server Apache Tomcat v9.0 at localhost failed to start. 이클립스에서 톰캣 서버를 시작하면 가끔 이런 오류가 떠서 사람을 미치게 만든다.... 여기에는 많

technote-mezza.tistory.com

 

5. Save could not by completed. 파일 저장 실패

- src/main/resources 폴더 아래 파일이 위치하고 있는지 확인

- window - Preferences - General - Content Types - Text Default Encoding UTF-8로 설정

- 이렇게 해도 적용이 잘 안 되었는데 Text 밑에 파일 확장자 확인하여 지정

- sts 껐다가 다시 켜기

https://blog.naver.com/mandueun/120116076411

 

[Eclipse][이클립스 오류]save could not be completed.

HangulUtils.java를 실행하다가....다음과 같은 문제 발생   다른사람들 도 문제가 발생되어 해결했...

blog.naver.com

 

7. sts git 연동 시 로그인 안 됨

- id/pwd가 맞음에도 계속 연결이 안 됐었는데 이제는 Github에서 Token Authentication 인증을 요구한다고 함

- 발급받은 토큰 내용을 pwd에 입력하면 gitjhub 로그인 과정 통과

[참고:https://velog.io/@sanna/STS4-create-Java-project-and-connect-gitgithub]