일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- javascript
- Spring Boot
- php
- springboot
- Git
- Spring
- Gradle
- 맛집
- Spring Batch
- tool
- 요리
- linux
- MySQL
- Design Patterns
- jenkins
- jsp
- JVM
- laravel
- IntelliJ
- elasticsearch
- Oracle
- db
- AWS
- Web Server
- redis
- java
- it
- ubuntu
- devops
- ReactJS
- Today
- Total
아무거나
spring 프로젝트 생성 기본 예제 본문
spring3 + maven + bootstrap + jsp
Spring 은 Java EE 의 복잡한 개발을 단순화 시켜줄 수 있는 Framework 입니다. Spring Framework는 Java EE의 개발을 POJO(Plain Old Java Object) 기반으로 개발할 수 있게 해 주며
Spring Framework를 이용하면 MVC(Model-View-Controller) 패턴으로 개발할 수 있습니다. 서버 사이드 Java 개발의 de-facto(사실상 표준) framework로 여겨지고 있습니다.
그리고 Spring Framework는 Maven과 함께 사용되기 때문에 Maven의 이용법에 대해 숙지하고 계시는 것이 좋을 것 같습니다.
기본 설치 사항
eclipse, tomcat, maven
1. STS 홈페이지(http://spring.io/tools) 에서 직접 다운받을수 있지만 나는 이클립스 마켓을 통하여 설치하는걸로 시작.
- help -> eclipse marketplace -> sts 검색 -> spring tool suite(sts) for eclipse x.x.x release install
2. 프로젝트 생성
- file -> new -> other -> spring -> spring strarter project 선택
- 항목입력 후 생성
3. https://github.com/almasaeed2010/AdminLTE 다운
4. 소스분리, jsp 작성
ex) <%@include file="include/header.jsp"%>
5. 서버 경로 설정
ex) server.xml path에서 수정
6. src/main/webapp/resources/ 경로에 js,css,image등을 넣어놓는다.
7. 불러온다
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="/resources/bootstrap/css/bootstrap.min.css">
<!-- AdminLTE App -->
<script src="/resources/dist/js/app.min.js"></script>
8. spring cloud aws를 이용하여 s3를 연동한다. (javascript로 bucket data call)
- api 관련 package를 만든다(restapi)
'Java & Kotlin > Spring' 카테고리의 다른 글
json parse 방법[데이터 json형태로 출력하기] (0) | 2019.06.19 |
---|---|
다른 패키지의 경로를 접근하게 하는 방법 (0) | 2019.06.18 |
RedirectAttributes 사용한 redirect 전송법(not parameter) (0) | 2019.06.17 |
[Spring Boot] springboot+gradle+bootstrap 프로젝트 생성 (0) | 2019.06.07 |
[spring boot] 특정 디렉토리에 있는 파일 목록 읽기 (0) | 2019.05.22 |