在这里输入图像描述我有一个名为“projectwithmaven”的java项目。在src/main/java中,我创建了不同的包com.states、com.tutorial、com.map等。现在我想要一个java实体类studenttable从com.tutorial进入我的com.states java主类“statedemo.java”,如下所示//主pgm
package com.states;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import com.tutorial.StudentTable;
public class StateDemo {
public static void main(String[] args) {
System.out.println("Eg:- ");
SessionFactory f= new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
//Create Student OBJECT:
StudentTable std = new StudentTable;
//properties SET: Get
std.setStudName("Samudra Dutta Gupta");
std.setStudRno(54);
Session s = f.openSession();
Transaction tx = s.beginTransaction();
s.save(std);
tx.commit();
s.close();
f.close();
}
}//主类
studenttable std=new studenttable()即使在导入studenttable类后,仍会显示错误以改进该类。
但我无法从com.tutorial.studenttable导入studenttable。它不断显示导入/项目修复等选项。。。和其他选择
(注意:studenttable是一个java实体类。我也在使用JavaHibernate)。我无法理解我犯了什么错误。我无法删除正在停止运行主类的错误。
我正在使用EclipseIDE。它是否与eclipse配置有关?
暂无答案!
目前还没有任何答案,快来回答吧!