I want to have parameters in controllers declared as follows:
... method(@JsonIn Bean d, @JsonIn Bean d2, String s)
or
... method(@JsonIn @RequestParam("d") Bean d, @JsonIn @RequestParam("d2")...
Type: Posts; User: novax00; Keyword(s):
I want to have parameters in controllers declared as follows:
... method(@JsonIn Bean d, @JsonIn Bean d2, String s)
or
... method(@JsonIn @RequestParam("d") Bean d, @JsonIn @RequestParam("d2")...
I don't understand what do you mean
Problem resolved by aspect
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import...
Hello. I have big project on spring 3.0.2 and want upgrade to spring 3.1.3. But there is little problem.
@Controller
public class IndexController{
@RequestMapping("index7")
public...