caused By : java.lang.IllegalArgumentException: Bean object must not be null

这个异常是“参数非法”。

仔细看一下,在模型驱动的时候,写错了。

本来应该是private Standard standard = new Standard();

写成了private Standard standard;

参数没有被封装到模型中。

猜你喜欢

转载自blog.csdn.net/zw1137229578/article/details/82786810