작성
·
468
0
아래는 customer/createCustomer.html 일부입니다.
강의를 듣고 th:action 을 적용시켜봤는데요
1.controller-> getmapping / postmapping 모두
같은 url 로 설정
2.customer/createCustomer.html -> th:action 기입
두 조건을 다 넣어줬는데
post mapping 에서 받아오는 form 에서
carNum 이 중복되어 (ex: 1111->1111,1111) 나타납니다.
아래는 오류가 발생했을때 웹페이지 정보입니다.
query string parameter 와 form 에서 중복으로 데이터를 가져옵니다.
th:action -> th:action=@{/main/findCustomerByCarNum}
수정하면 중복되는 오류가 사라지구요..
혹시 th:action 사용시 getmapping에서
@RequestParam (name = "carNumber") String carNumber (사진 빨간 밑줄)
같은 것들이 있으면 저처럼 중복되는 오류가 생길수 있나요?
omimabi77님 감사합니다^^