package
com.knowledgewalls.controller;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.stereotype.Controller;
import
org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RequestMethod;
import
org.springframework.web.bind.annotation.ResponseBody;
import
com.knowledgewalls.dao.StudentInfoDAO;
import
com.knowledgewalls.entity.StudentInfo;
import
com.knowledgewalls.entity.StudentPrimaryGroup;
@Controller
public
class
StudentInfoController {
@Autowired
StudentInfoDAO studentInfoDAO;
@RequestMapping
(value=
"/addStudent"
,method=RequestMethod.GET)
public
@ResponseBody
String addUsers(){
{
StudentInfo studentInfo =
new
StudentInfo();
studentInfo.setStudentName(
"Raj"
);
StudentPrimaryGroup spg =
new
StudentPrimaryGroup();
spg.setPhoneNo(
"9556612345"
);
spg.setEmailId(
"john@gmail.com"
);
studentInfo.setStudentId(spg);
studentInfoDAO.save(studentInfo);
}
return
"Inserted.."
;
}
}