정수를 int로 변환하는 방법 클라이언트 측과 서버 측 간에 데이터를 전송하는 웹 어플리케이션 작업을 하고 있습니다. JavaScript int != Java int는 이미 알고 있습니다.Java int는 null일 수 없습니다.이게 제가 직면한 문제입니다. Java int 변수를 Integer로 변경했습니다. public void aouEmployee(Employee employee) throws SQLException, ClassNotFoundException { Integer tempID = employee.getId(); String tname = employee.getName(); Integer tage = employee.getAge(); String tdept = employee.getDep..