@POST @Consumes("application/json") @Produces("application/json") public KsKamera create(KsKamera entity) { entity.setGununTarihi(new Date()); dao.persist(entity); entity.setKullanici(kullaniciDao.find(entity.getKullaniciID())); entity.setBolge(bolgeDao.find(entity.getBolgeID())); return entity; }
@PostConstruct public void init() { telefonSantraliList = dao.findAll(); kullaniciList = kullaniciDao.findAll(); bolgeList = bolgeDao.findAll(); }