I got the duplicate key problem in db
because patientID is repeating if same patient takes appointment with another doctor
is it caused for OneToOne relation?
Now please tell me can we use any other technology for frontend with same project instead of index.jsp like react app.js etc please guide me
can spring mvc handle data from react and send it in db like mysql?
Hello I m creating a spring mvc web project using intellijiee IDE and tomcat 9 server every thing going perfect
I m facing problem with my urls
If I put all my jsp files inside WEB_INF->VIEW->index.jsp,about.jsp
on starting my server 404 error is there but if I put index.jsp under Webapp it works perfect
but problem is when I hit url like localhost:8080/about it works because I configure it in controller
but when I hit localhost:8080/ 404 error is found because my index page is not now inside VIEW folder
below all jsps are under WEB_INF->VIEW->about.jsp,help.jsp,contact.jsp but my index is not under it because on starting server I face 404
when I hit /home index.jsp not runs It shows 404 but a little trick works If I put index.jsp inside VIEW as well and webapp folder too then my problem solves
What Should I do?