En realidad, es muy fácil usar Spring en JSP, principalmente usando la función WebApplicationContextUtils.getWebApplicationContext de Spring.
Para obtener ApplicationContext en JSP, debe hacer esto.
primero
import="org.springframework.web.context.support.*,org.springframework.context.*"
Luego
puede hacer esto:
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(getServletContext());
Puedes operarlo.
JSP puede considerarse un servlet, por lo que usar getServletContext() es algo natural.