I'm trying access some value from my jsp file in Spring controller. All examples that I've found was with <input>
or <form>
code, but I want to pass "clear" value (just String), for example <c:set var="name" value="Ololo"/>
or smth like this and print it in Conroller.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You can't. Data can flow only in one direction, from controller to view (jsp). If you have to send information back to the controller then you should make http request. That's the reason you only see
<form>
and<input>
in examples