<STS에서 JSP 프로젝트 만들기>
1. File - New - Other.. 선택
2. Dynamic Web Project 선택
3. 프로젝트명 적고 Finish
4. maven 프로젝트로 변환
프로젝트명 우클릭해서 configure - convert to maven project
5. webContent 폴더에 index.jsp 파일 추가
6. 파일명 설정하고 (index.jsp) Finish
7. Tomcat 라이브러리 추가 : 프로젝트명 우클릭 -> properties / java build path / libraries / Add library / Server Runtime
8. server 설정 : Preferences > Server > Runtime Environment > Add
<Test>
index.jsp 파일 <body>안에 text를 적고 실행하면
결과창
*설치를 완료하니 maven 에러가 발생해서, 구글링해서 index.jsp 파일 밑에 이 코드를 추가해서 돌렸다가 지우니 에러가 사라졌다..
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
</dependency>
참고 사이트
https://sbell92.tistory.com/38
'WEB > 2020_webCamp' 카테고리의 다른 글
JSP : Scripting elements (Tag) (0) | 2020.08.05 |
---|---|
STS (Spring Tool Suite) : Github 연동하기 (0) | 2020.08.04 |
STS (Spring Tool Suite) : 폰트 & 인코딩 형식 지정 (0) | 2020.08.04 |
JSP / Spring 개발을 위한 환경 설치 (MAC) (0) | 2020.08.03 |
jQuery Tutorial (0) | 2020.07.31 |