1. 程式人生 > >三、第一個程序

三、第一個程序

lap play code 官網 ted click ets img ()

1.工程目錄結構

技術分享圖片

2.需要導入的jar包

技術分享圖片

除了技術分享圖片技術分享圖片外,其他的都是mybatis的核心包,直接可以在官網下載。

3.具體程序

技術分享圖片
package com.bjpowernode.beans;

public class Student {
    private Integer id;
    private String name;
    private int age;
    private double score;
    public Student() {
        super();
        // TODO Auto-generated constructor stub
} public Student(String name, int age, double score) { super(); this.name = name; this.age = age; this.score = score; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; }
public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public double getScore() { return score; }
public void setScore(double score) { this.score = score; } @Override public String toString() { return "Student [name=" + name + ", age=" + age + ", score=" + score + "]"; } }
Student.java

三、第一個程序