ㅠㅠ 이런 작은거 하나때문에 5시간동안 해결을 못 했다니..바보
오류 코드 <form th:action="@{|answer/create/${question.id}|}" method="post">
오류 코드
<form th:action="@{|answer/create/${question.id}|}" method="post">
해결 코드 <form th:action="@{|/answer/create/${question.id}|}" method="post">
해결 코드
<form th:action="@{|/answer/create/${question.id}|}" method="post">
이유 상대경로를 입력을 할 때는 루트(/)를 시작할 때 잘 적어야 오류가 안남
이유