How to set ServletContext property for a bean in Spring XML metadata configuration

后端 未结 4 2068
名媛妹妹
名媛妹妹 2021-01-14 23:14

I tried searching here on SO but i couldn\'t find a solution. I have some XML metadata like the following.



        
4条回答
  •  说谎
    说谎 (楼主)
    2021-01-14 23:36

    You cannot reference the servlet context in your XML like this because its lifecycle is controlled by the servlet container.

    The solution is to have com.abc.ProductController implement ServletContextAware and then Spring will set it for you.

提交回复
热议问题