日期:2014-05-17 浏览次数:20605 次
public class SelectCourse implements java.io.Serializable { // Fields private String snu; private TearcherInfo tearcherInfo; private StudentInfo studentInfo; private CouresInfo couresInfo; private String ctime; private Integer cgrade; /*get、set方法省略*/
public String addSelectCourse() throws Exception { TearcherInfo tearcherInfo = new TearcherInfo(); StudentInfo studentInfo = new StudentInfo(); CouresInfo couresInfo = new CouresInfo(); System.out.println("学号:" + getSelectSnu() + "教师编号:" + getSelectTearcher() + "课程编号:" + getSelect1Course()); tearcherInfo.setTnu(getSelectTearcher()); studentInfo.setSnu(getSelectSnu()); couresInfo.setCnu(getSelect1Course()); selectCourse.setStudentInfo(studentInfo);//从此处开始出错!java.lang.NullPointerException selectCourse.setCouresInfo(couresInfo); selectCourse.setTearcherInfo(tearcherInfo); selectCourse.setCgrade(getCgrade()); selectCourse.setCtime(getCtime()); try { adm.saveSelectCourse(selectCourse); } catch (Exception e) { return "input"; } return "success"; }
<hibernate-mapping> <class name="com.yaxing.domain.SelectCourse" table="SelectCourse" schema="dbo" catalog="Student"> <id name="snu" type="java.lang.String"> <column name="Snu" length="16" /> <generator class="assigned" /> </id> <many-to-one name="tearcherInfo" class="com.yaxing.domain.TearcherInfo" fetch="select"> <column name="Tnu" length="10" not-null="true" /> </many-to-one> <many-to-one name="studentInfo" class="com.yaxing.domain.StudentInfo" update="false" insert="false" fetch="select"> <column name="Snu" length="16" not-null="true" unique="true" /> </many-to-one> <many-to-one name="couresInfo" class="com.yaxing.domain.CouresInfo" fetch="select"> <column name="Cnu" length="10" not-null="true" /> </many-to-one> <property name="ctime" type="java.lang.String"> <column name="Ctime" length="10" /> </property> <property name="cgrade" type="java.lang.Integer"> <column name="Cgrade" /> </property> </class> </hibernate-mapping>
推荐阅读更多>
- ssh中,js怎么获取多选框的值并传入action,下面是小弟我的代码,大家帮忙修改一下,并帮小弟我写出action感激不尽
- 关于java+jsp购物车添加商品的有关问题,来哦
- 履历有人看,没人打电话为什么呢
- JDBC 修改 Hibernate查询 有关问题
- java C3PO 监控,该怎么处理
- java操作Excel的方法
- J2ME关于textfield.phonenumber的有关问题
- 抽奖有关问题~
- codePointAt解决方法
- java spring 定时器运行失效的有关问题
- 条形码有关问题
- J2EE工作一年后应该达到什么水平,该怎么解决
- javamail 附件和文本内容不能实现同时发送[]
- 一个分页有关问题 请们看看
- java里如何取变量地址
- JAVA与感情分析
- URL中文乱码[无论如何转码都是乱码]
- BeanDefinitionStoreException错误,碰到过的帮忙看看吧,
- 用正则表达式过滤空格,该怎么解决
- JAVA核心技术 下的关于日历的一个程序 自己试了一上 发现有有关问题 求教了~