본문 바로가기

Development/에러 해결11

[git] error: you need to resolve your current index first 해결 checkout 하려고 했는데 error: you need to resolve your current index first 에러가 발생했다. 그 뒤로는 error: you need to resolve your current index first 파일이름 needs merge . . . 해결방법 git reset –merge 간단하게 git reset을 하고 merge 해주면 된다. 2022. 6. 17.
[Flutter] Error: The argument type 'IconData' can't be assigned to the parameter type 'Widget' 해결 플러터 위젯에 icon을 추가하려 했을 때 발생한 에러. 이렇게 아이콘을 작성하였다. icon: Icons.person_outline, 하지만 플러터에서 모든 것은 위젯이기 때문에, icon도 Icon 위젯을 사용해서 작성해야 한다. icon: const Icon(Icons.person_outline), 2022. 6. 16.
localhost 상태에서 svg가 작동하지 않을 때 (JSP) localhost 상태에서 svg가 작동하지 않을 때 jsp로 semi 프로젝트를 하는 중인데, 절대경로로 아무리 입력을 해도 Failed to load resource: the server responded with a status of 404 (Not Found) 라는 오류만 발생했다. 해결방법 조금 허무한데, src 주소가 잘못된 거였다... EL(Expression Language)을 사용해 contextPath로 접근해야 했다. 2022. 6. 13.
Tomcat server error port(8005, 8080...) already in use 포트 서버 에러 해결 Tomcat 에러 이클립스 Localhost를 실행하다 갑자기! 뜬금없이 server를 이미 사용 중이라는 오류가 떴다. 나의 경우에는 서버가 종료되지 않아 일어난 에러 같았다. 종종 일어나는 에러인 것 같아 해결 방법을 적어놓는다. 에러 전문 Several ports (8005, 8080, 8009) required by Tomcat v6.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or cha.. 2022. 5. 24.