JSP中调用Spring的方法
Posted 小白827
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP中调用Spring的方法相关的知识,希望对你有一定的参考价值。
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="org.springframework.context.ApplicationContext"%> <%@ page import="org.springframework.context.support.ClassPathXmlApplicationContext"%> <%@ page import="com.pegasus827.bean.helloworld" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <% ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml"); helloworld hw=(helloworld)ctx.getBean("helloworld"); hw.hello(); %> </body> </html>
spring的基本包要引入,而且你自己定义的包也要引入才能识别类名
以上是关于JSP中调用Spring的方法的主要内容,如果未能解决你的问题,请参考以下文章
谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段