Spring MVC: Url path appending when posting the form

前端 未结 4 916
情深已故
情深已故 2020-12-24 00:45

i am new to spring mvc. i created a simple login application. but in my case the first time the for posting url and calling controller method correctly. in second time it\'s

4条回答
  •  抹茶落季
    2020-12-24 01:05

    I tried with the spring tag bysetting only the relative path, it appends automatically the context path like:

    
    <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
    
    
    
    
    
    
    

    The context path is set in application.properties as bellow:

    server.servlet.contextPath=/MyApp
    

    In the jsp page, it produces:

      Click here
    

提交回复
热议问题