Maven搭建MyEclipse10+Struts2.1+Spring3.3+Hibernate3.3全注解框架
Id generation :native
2. 添加service接口
package org.inscribe.farsighted.service;
import org.inscribe.farsighted.model.Student;
public interface StudentService { public Student findById(Integer id); }
3. 添加service实现类