Springのmvc開発モード-jspとjavaインタラクション

2365 ワード

mvcとは何ですか?springネット上の答え千千千千万ここは私がcsdnにアップロードしたコードを直接ダウンロードすることを説明していません(ここをクリックしてダウンロードします)、まずコードをダウンロードしてから下を見ることができます.
JAvaのコントロール
package com.tcl.biui.controller;

import javax.servlet.ServletContext;
import com.tcl.biui.service.ControlService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.context.ServletContextAware;

@RequestMapping("/a/*")
@Controller
public class TestController implements ServletContextAware{
	
	@Qualifier("ControlService")
	@Autowired
	private ControlService controlService;
	
	@Override
	public void setServletContext(ServletContext arg0) {
		// TODO Auto-generated method stub
		
	}
	
	@RequestMapping(value = "test",method = RequestMethod.GET) 
	 public String test() 
	{ 
		controlService.serviceTest("who are you");
		return"test"; 
	}
}

これがtest.jspに位置決めできるcontrollerです.次はjspコードです
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ page import="com.tcl.biui.service.ControlService"%>
<jsp:useBean id="ControlService" class="com.tcl.biui.impl.ControlServiceImpl" scope="page"></jsp:useBean>
	<%
	String str = ControlService.serviceTest("test");
	%>	
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>hello world</title>
</head>
<body>
  <label>hello world <%=str%> </label>
</body>
</html>

これはjavaをロードしたパケットとspringを参照するbeanです.
<%@ page import="com.tcl.biui.service.ControlService"%>
<jsp:useBean id="ControlService" class="com.tcl.biui.impl.ControlServiceImpl" scope="page"></jsp:useBean>

データ処理はjavaで処理され、処理が完了したらjspページに表示されます.