[SSM]java.lang.NullPointerException at com.service.EmpService.mainMenu(EmpService.java:38)

package com.service;

import java.util.Scanner;

import com.dao.EmpDao;
import com.entity.Emp;
import com.util.DateUtil;

public class EmpService {

Scanner input =new Scanner(System.in);

private EmpDao empDao;

public void mainMenu(){
System.out.println("请输入员工姓名:");
String name=input.next();

System.out.println("请输入员工职位:");
String job=input.next();

System.out.println("请输入入职时间:");
String hiredate=input.next();


System.out.println("请输入薪资:");
double sal=input.nextDouble();

System.out.println("请输入奖金:");
double comm=input.nextDouble();

System.out.println("请输入部门编号:");
int deptid=input.nextInt();

Emp emp = new Emp(name, job, DateUtil.StringToDate(hiredate), sal, comm, deptid);

try {
empDao.addEmp(emp);
System.out.println("添加成功!");
} catch (Exception e) {
System.out.println("添加失败,请稍后再试!");
e.printStackTrace();
}

}


public EmpDao getEmpDao() {
return empDao;
}


public void setEmpDao(EmpDao empDao) {
this.empDao = empDao;
}

 

}

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">


<!-- 注入数据访问层对象 -->
<bean id="empDao" class="com.dao.impl.EmpDaoImpl"></bean>


<!-- 注入服务层对象 -->
<bean id="empService" class="com.service.EmpService" autowire="byName"></bean>

</beans>

 

刚开始找了好久都没有找出来,后来看了别人的博客,才想起来,发现自己的配置文件里少写了autowire="byName"这句话

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值