使用spring容器時遇到的小錯誤

使用spring容器時遇到的小錯誤 報錯爲沒有實例化LoginAction,錯誤原因是忘記添加scope=「prototype」。 它的作用是: 1.scope=「prototype」是爲每個請求提供一個action實例(與struts2的機制是一樣的)。 2.scope=「session」是爲每個會話提供一個action實例。 因此沒寫這句話相當於沒有實例化LoginAction。
相關文章
相關標籤/搜索