'int'对象不可调用错误

时间:2017-10-20 06:23:02

标签: python python-3.x int

我正在尝试为学校创建一个程序,在使用SimpleGraphics输入数学表达式后输出绘制的图形,但我继续收到此错误:

@Repository
public class ProfileDaoImpl implements ProfileDao {

@Autowired
private SessionFactory sessionFactory;

private Session session;

@Override
@Transactional
public void addProfile(Profile p) {

    session = sessionFactory.openSession();
//      session.beginTransaction();
    session.save(p);
//      session.getTransaction().commit();
    session.close();

}

这是我到目前为止的代码:

<context:component-scan base-package="com.project.dateandcrud" />

我不确定为什么我会收到此错误。有人能够向我解释一下吗?我编号哪一行给了我错误。

0 个答案:

没有答案