Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的控制器中有一个@ModelAttribute someString。如何访问我的 JSP 中的值?我试过这个:
@ModelAttribute
someString
<form:input path=""/>
但它不起作用
请帮忙。
你试过用jsp形式定义吗?像这样的东西..?
<form:form id="form" action="${formAction}" method="post" modelAttribute="someString" enctype="multipart/form-data">