码迷,mamicode.com
首页 > 编程语言 > 详细

JSP中调用Spring的方法

时间:2018-06-07 11:34:45      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:frame   type   odi   com   spring   port   引入   pre   framework   

<%@ 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的方法

标签:frame   type   odi   com   spring   port   引入   pre   framework   

原文地址:https://www.cnblogs.com/pegasus827/p/9149297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!