강의

멘토링

로드맵

Inflearn Community Q&A

minseo0003258172's profile image
minseo0003258172

asked

Spring MVC Part 1 - Core technologies for backend web development

Product Domain Development

login프로젝트

Resolved

Written on

·

186

0

안녕하세요 로그인 프로젝트 따라하며 공부하는데 회원가입html로 이동해야하는데 로그인html로 이동하더라고요

url경로 보니까

http://localhost:8081/login?redirectURL=/members/add

이렇게 뜨는데 home화면에서 분명 회원가입 html로 가게 설정해뒀는데 왜 회원가입을 누르면 리다이렉트 되는지 모르겠습니다..

답변 해주시면 감사하겠습니다!

https://drive.google.com/file/d/1FdVqOIvDoSXP-tNytaxKZ_v7YOLW6gP6/view?usp=drive_link

springmvc

Quiz

When creating dynamic web pages with Spring MVC, what are the key dependency combinations needed for basic web features and HTML template processing? The key dependencies typically include: * `spring-boot-starter-web` (for core web capabilities) * A template engine starter like `spring-boot-starter-thymeleaf` (for HTML templating)

Web, H2

Web, Thymeleaf

JPA, Lombok

Test, Web

Answer 1

1

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

WebConfig의 아래 코드 중

image

"members/add"를 "/members/add"로 앞에 /를 추가해주세요 ^^

감사합니다.

헉 감사합니다 !!!!

minseo0003258172's profile image
minseo0003258172

asked

Ask a question