0

这是 MainApp.java

package spring.pac;

import java.util.List;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
 public static void main(String[] args) {
      ApplicationContext context = 
             new ClassPathXmlApplicationContext("Beans.xml");

      StudentJDBCTemplate studentJDBCTemplate = 
      (StudentJDBCTemplate)context.getBean("studentJDBCTemplate");

      System.out.println("------Records Creation--------" );
      studentJDBCTemplate.create("Zara", 11);
      studentJDBCTemplate.create("Nuha", 2);
      studentJDBCTemplate.create("Ayan", 15);

      System.out.println("------Listing Multiple Records--------" );
      List<Student> students = studentJDBCTemplate.listStudents();
      for (Student record : students) {
         System.out.print("ID : " + record.getId() );
         System.out.print(", Name : " + record.getName() );
         System.out.println(", Age : " + record.getAge());
      }

      System.out.println("----Updating Record with ID = 2 -----" );
      studentJDBCTemplate.update(2, 20);

      System.out.println("----Listing Record with ID = 2 -----" );
      Student student = studentJDBCTemplate.getStudent(2);
      System.out.print("ID : " + student.getId() );
      System.out.print(", Name : " + student.getName() );
      System.out.println(", Age : " + student.getAge());

   }
}

学生.java

package spring.pac;

public class Student {
private Integer age;
   private String name;
   private Integer id;

   public void setAge(Integer age) {
      this.age = age;
   }
   public Integer getAge() {
      return age;
   }

   public void setName(String name) {
      this.name = name;
   }
   public String getName() {
      return name;
   }

   public void setId(Integer id) {
      this.id = id;
   }
   public Integer getId() {
      return id;
   }
}

StudentDAO.java

package spring.pac;

import java.util.List;

import javax.sql.DataSource;

public interface StudentDAO {

   public void setDataSource(DataSource ds);

   public void create(String name, Integer age);

   public Student getStudent(Integer id);

   public List<Student> listStudents();

   public void delete(Integer id);

   public void update(Integer id, Integer age);
}

StudentJDBCTemplate.java

package spring.pac;

import java.util.List;

import javax.sql.DataSource;

import org.springframework.jdbc.core.JdbcTemplate;

public class StudentJDBCTemplate {
 private DataSource dataSource;
   private JdbcTemplate jdbcTemplateObject;

   public void setDataSource(DataSource dataSource) {
      this.dataSource = dataSource;
      this.jdbcTemplateObject = new JdbcTemplate(dataSource);
   }

   public void create(String name, Integer age) {
      String SQL = "insert into Student (name, age) values (?, ?)";

      jdbcTemplateObject.update( SQL, name, age);
      System.out.println("Created Record Name = " + name + " Age = " + age);
      return;
   }

   public Student getStudent(Integer id) {
      String SQL = "select * from Student where id = ?";
      Student student = jdbcTemplateObject.queryForObject(SQL, 
                        new Object[]{id}, new StudentMapper());
      return student;
   }

   public List<Student> listStudents() {
      String SQL = "select * from Student";
      List <Student> students = jdbcTemplateObject.query(SQL, 
                                new StudentMapper());
      return students;
   }

   public void delete(Integer id){
      String SQL = "delete from Student where id = ?";
      jdbcTemplateObject.update(SQL, id);
      System.out.println("Deleted Record with ID = " + id );
      return;
   }

   public void update(Integer id, Integer age){
      String SQL = "update Student set age = ? where id = ?";
      jdbcTemplateObject.update(SQL, age, id);
      System.out.println("Updated Record with ID = " + id );
      return;
   }
}

StudentMapper.java

package spring.pac;

import java.sql.ResultSet;

import java.sql.SQLException;

import org.springframework.jdbc.core.RowMapper;

public class StudentMapper implements RowMapper<Student> {

      public Student mapRow(ResultSet rs, int rowNum) throws SQLException {

          Student student = new Student();

          student.setId(rs.getInt("id"));

          student.setName(rs.getString("name"));

          student.setAge(rs.getInt("age"));

          return student;
   }
}

我正在使用 JBoss 5 和 Eclipse。请帮我哪个是模型,哪个是视图,哪个是控制器

4

1 回答 1

0

乍一看,这不是一个 Spring MVC 项目。为了遵守 Spring MVC,你应该有一个用 @Controller 注释的 Controller 类。此外,我看不到任何可以充当视图的 jsp 页面或类似页面。

总结一下spring MVC元素:

控制器: 它是一个接收http请求并触发相应业务逻辑的组件。

模型: 它只是代表传递给视图的领域对象的一堆数据

view: 数据重排的方式。

这里有一个例子可以帮助你理解这个概念。假设您有一个 Web 应用程序,它允许您在数据库中搜索学生。通过输入学生姓名并点击“搜索”按钮,您可以向服务器发送一个 http 请求(可能是 POST)并等待响应。因此,Web 应用程序有一个控制器类,例如 StudentsController管理有关学生的请求。公开一个绑定到 URL的StudentsController方法 searchStudent(...) http://.../student/search。这意味着当您向此 URL 发送请求时,将执行该方法。好的,假设您在请求正文中传递了按姓名检索学生所需的参数。在 - 的里面searchStudent(...)方法发生了一些业务逻辑来从数据库中检索学生。可能以这种方式获取的信息将表示为Student您希望作为 html 页面发送给客户端的对象。

为此,您将把 Student 发送到一个 jsp,该 jsp 在一些 html 标记内格式化来自 Student 类的数据。这里传递给 jsp 的 Student 类是模型,而 jsp 本身是视图

您还可以将 json 格式的学生数据发送给某个客户端。学生的 json 表示也是一个视图。

于 2013-07-31T11:34:15.923 回答