인프런 커뮤니티 질문&답변

arch님의 프로필 이미지
arch

작성한 질문수

스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

View 환경설정

attributeValue값 hello!!에서 spring!!으로 변경이 안 됩니다.

작성

·

241

0

안녕하세요  hello에서 spring으로 바꿔 줘도 계속 

안녕하세요. hello!!로 뜨는게 뭐가 문제일까요.?

디렉토리상에 파일위치도 잘 맞고 서버 껏다 켰다 해도 계속 hello입니다 

혹시 몰라 build.gradle 도 첨부합니다 ㅜ


import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class HelloController {

@GetMapping("hello")
public String hello(Model model){
model.addAttribute("data","spring!!");
//data(모델에서 키값)가 모델을 넘기면서 렌더링하라고하는 것
return "hello";
}
}
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Hello</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
</body>
</html>



plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}

group = 'hello'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

repositories {
mavenCentral()
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
}

tasks.named('test') {
useJUnitPlatform()
}

답변 1

0

안녕하세요. arch님, 공식 서포터즈 OMG입니다.

서버를 재실행해도 문제가 발생하는 경우라면 캐시 문제로 예상됩니다.

 

1. 브라우저에서 새로고침 버튼을 3초정도 꾹 눌렀다가 떼서 재확인 해주세요.

해결이 안될 경우

2. 시크릿 모드에서 확인해주세요 ( 크롬, 엣지에서 ctrl + shift + n 입력하여 시크릿모드 창 오픈 ) 

 


감사합니다.

arch님의 프로필 이미지
arch
질문자

감사합니다! 해결되었어요!!

arch님의 프로필 이미지
arch

작성한 질문수

질문하기