teang1995 / movie_review_project

Movie review site project for MovieLens Dataset
0 stars 0 forks source link

강의 환경세팅 맞추기 #5

Open teang1995 opened 2 years ago

teang1995 commented 2 years ago

강의 환경 세팅 맞추는 거 편하게 따라오게 해주는 이슈

teang1995 commented 2 years ago
  1. 자바 11 설치 link
teang1995 commented 2 years ago
  1. Eclipse 설치(IntelliJ 도 가능하다고 함. 통일하는 게 좋을 듯?) link
teang1995 commented 2 years ago
  1. springboot 사이트로 이동 후 아래 설정에 맞춰 프로젝트 선택 후 generate link
    Project : Gradle Project
    SpringBoot: 2.6.6
    Language:  Java
    Packaging: Jar
    Java: 11
    groupId: hello
    artifactid: hello-spring
    Dependencies: Spring Web, Thymeleaf
teang1995 commented 2 years ago
  1. 3에서 생긴 파일의 압축을 해제하고, IDE에서 import existing project 선택, build.gradle 파일을 import하여 프로젝트 생성
teang1995 commented 2 years ago

3강 - View 세팅

  1. index.html 코드
    <!DOCTYPE HTML>
    <html>
    <head>
        <title>Hello</title>
        <meta http-equiv="Content-Type" content="text/html"; charset="UTF-8" />
    </head>
    <body>
    Hello
    <a href="hello">hello</a>
    </body>
    </html>
teang1995 commented 2 years ago
  1. spring docs 링크 이 링크는 docs를 하나의 html파일로 합쳐놓아 검색에 유용하다. link