0

私はJavaで小さなSpringとHibernateの基本アプリケーションを開発しています。私のアプリケーションはEmployee と Unit と1対多の関係にあり、 Employee には1つのユニットがあり、 Unit には多くの Employee があります。この小さなアプリケーションでは、次のようなエラーが生成されます `

私はユニットスキーマテーブルにデータをハードコーディングしました.jspで満たされたユニットコンボボックスにデータを入力しましたが、@controllerユニット内にはnullデータがあります。

com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: 列 'unit_id' を null にすることはできません

unit_id に null 値を許可する場合、unit_id を挿入せずに挿入される他のデータ

ここに私のエンティティクラス

@Entity
@Table(name = "employee")
public class Employee implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)

    @Column(name = "id")
    private Integer id;

    @Column(name = "epf")
    private int epf;

    @Column(name = "fname")
    private String fname;

    @Column(name = "lname")
    private String lname;

    @Column(name = "email")
    private String email;

    @JoinColumn(name = "unit_id", referencedColumnName = "id")
    @ManyToOne//(optional = false)
    private Unit unit;


@Entity
@Table(name = "unit")
public class Unit implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "id")
    private Integer id;

    @Column(name = "name")

私のコントローラークラス

 @Autowired
        private EmployeeService employeeService;
        private DesignationService designationService;

        @RequestMapping({"/index", "/"})
        public String setupForm(Map<String, Object> map){
            Employee student = new Employee();
            map.put("employee", student);
            map.put("employeeList", employeeService.getAllEmployee());
map.put("unitList", employeeService.getAllUnitList());

            return "employee";
        }

@RequestMapping(value="/employee.do", method=RequestMethod.POST)
    public ModelAndView doActions(@ModelAttribute Employee emp, BindingResult result, @RequestParam String action, Map<String, Object> map){
        ModelAndView modelAndView = new ModelAndView("employee");

        Employee employeetResult = new Employee();
        switch(action.toLowerCase()){   //only in Java7 can put String in switch
        case "add":
            employeeService.addEmployee(emp);
            employeetResult = emp;
            break;
        case "edit":
            employeeService.updateEmployee(emp);
            employeetResult = emp;
            break;
        case "delete":
            employeeService.deleteEmployee(emp.getId());
            employeetResult = new Employee();
            break;
        case "search":
            Employee searchedStudent = employeeService.getEmployee(emp.getId());
            employeetResult = searchedStudent!=null ? searchedStudent : new Employee();
            break;
        }
        map.put("employee", employeetResult);
        map.put("employeeList", employeeService.getAllEmployee());
        return modelAndView;
    }

私のJSP

<form:form action="employee.do" method="POST" commandName="employee">
  <table width="341" border="0">
    <tr>
      <td width="154">&nbsp;</td>
      <td width="21">&nbsp;</td>
      <td width="152">&nbsp;</td>
    </tr>
    <tr>
      <td><spring:message code="employee.id"/></td>
      <td>&nbsp;</td>
      <td><form:input path="epf" /></td>
    </tr>
    <tr>
      <td><spring:message code="employee.epf"/></td>
      <td>&nbsp;</td>
      <td><form:input path="epf" /></td>
    </tr>
    <tr>
      <td><spring:message code="employee.fname"/></td>
      <td>&nbsp;</td>
      <td><form:input path="fname"/></td>
    </tr>
    <tr>
      <td><spring:message code="employee.lname"/></td>
      <td>&nbsp;</td>
      <td><form:input path="lname" /></td>
    </tr>

    <tr>
      <td><spring:message code="employee.email"/></td>
      <td>&nbsp;</td>
      <td><form:input path="email" /></td>
    </tr>

    <tr>
      <td><spring:message code="employee.unit"/></td>
      <td>&nbsp;</td>

<!-- Unit Combo filling --><td>
     <form:select path="unit" multiple="false" size="1">
        <form:options items="${unitList}" itemValue="id" itemLabel="name"/>
     </form:select>
<!-- Unit Combo filling end --></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
    <td colspan="2">
      <input type="submit" name="action" value="Add" />
      <input type="submit" name="action" value="Edit" />
      <input type="submit" name="action" value="Delete" />
      <input type="submit" name="action" value="Search" />
    </td>
    </tr>
  </table>
</form:form>

私のDAOクラス

> @Repository public class EmployeeDaoImp implements EmployeeDao {
> 
>   @Autowired  private SessionFactory sessionfactory;
>           public void addEmployee(Employee emp) {         sessionfactory.getCurrentSession().save(emp);
> 
>   }
> 
>       public void updateEmployee(Employee emp) {
>       sessionfactory.getCurrentSession().update(emp);
> 
>   }
> 
>       public void deleteEmployee(int id) {
>               sessionfactory.getCurrentSession().delete(getEmployee(id));     }
> 
>    Employee   public Employee getEmployee(int empId) {
>               return (Employee) sessionfactory.getCurrentSession().get(Employee.class,empId);     }
> 
>       public List getAllEmployee() {
>               return sessionfactory.getCurrentSession().createQuery("from Employee").list();  }
4

1 に答える 1

1

id は DB の主キーです。値を指定せずにオブジェクトを保存しています。したがって、テーブルで自動インクリメントするか、休止状態を使用して値を生成します。

于 2013-09-20T09:47:04.163 に答える