Eclipse - eunja511005/Tutorial GitHub Wiki

이클립슀 μ‹€ν–‰

image

image


초기 ν”„λ‘œμ νŠΈ μ—΄κΈ°

image

image

μ•„λž˜μ™€ 같이 maven μžλ™ μ‹€ν–‰ 됨

image


초기 ν”„λ‘œμ νŠΈ μ‹€ν–‰

image

image

image

image

image


Hello World μ‹€ν–‰

package com.eun.tutorial.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MainController {
	
	@RequestMapping
	public String helloWorld() {
		return "Hello World!!";
	}

}

image

μ‹ κ·œ 이클립슀 μ„€μΉ˜

image

image

image

image

image

μ›Œν¬μŠ€νŽ˜μ΄μŠ€ : C:\######\workspace

μžλ™μ™„μ„± μ„€μ •

image

serialVersionUID μžλ™ 생성

image

인코딩 UTF-8 μ„€μ •

Window > Preferences > General > Workspace
Window > Preferences > Web > CSS
Window > Preferences > Web > HTML
Window > Preferences > Web > JSP

https://angelplayer.tistory.com/165