JSP で Spring を使用するのは実際には非常に簡単で、主に Spring の WebApplicationContextUtils.getWebApplicationContext 関数を使用します。
JSP で ApplicationContext を取得するには、これを行う必要があります。
初め
import="org.springframework.web.context.support.*,org.springframework.context.*"
次に、次のようにすることができます。
ApplicationContext
ctx = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
スプリングを操作できます。
JSP はサーブレットとみなすことができるため、getServletContext() を使用するのは当然のことです。