Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 776811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:30:37+00:00 2026-05-14T19:30:37+00:00

I’m trying to make work the example from hibernate reference. I’ve got simple table

  • 0

I’m trying to make work the example from hibernate reference.

I’ve got simple table Pupil with id, name and age fields. I’ve created correct (as I think) java-class for it according to all java-beans rules.

I’ve created configuration file – hibernate.cfg.xml, just like in the example from reference.

I’ve created hibernate mapping for one class Pupil, and here is the error occured.

<hibernate-mapping>
   <class name="Pupil" table="pupils">
       ...
   </class>
</hibernate-mapping>

table=”pupils” is red in my IDE and I see message “cannot resolve table pupils”. I’ve also founded very strange note in reference which says that most users fail with the same problem trying to run the example.

Ah.. I’m very angry with this example.. IMHO if authors know that there is such problem they should add some information about it.

But, how should I fix it? I don’t want to deal with Ant here and with other instruments used in example. I’m using MySql 5.0, but I think it doesn’t matter.

UPD: source code

Pupil.java – my persistent class

package domain;

public class Pupil {
    private Integer id;
    private String name;
    private Integer age;

    protected Pupil () { }

    public Pupil (String name, int age) {
        this.age = age;
        this.name = name;
    }

    public Integer getId () {
        return id;
    }

    public void setId (Integer id) {
        this.id = id;
    }

    public String getName () {
        return name;
    }

    public void setName (String name) {
        this.name = name;
    }

    public Integer getAge () {
        return age;
    }

    public void setAge (Integer age) {
        this.age = age;
    }

    public String toString () {
        return "Pupil [ name = " + name + ", age = " + age + " ]";
    }
}

Pupil.hbm.xml is mapping for this class

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC 
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" 
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="domain" >

    <class name="Pupil" table="pupils">
        <id name="id">
            <generator class="native" />
        </id>
        <property name="name" not-null="true"/>
        <property name="age"/>
    </class>
</hibernate-mapping>

hibernate.cfg.xml – configuration for hibernate

<hibernate-configuration>
    <session-factory>
        <!-- Database connection settings -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost/hbm_test</property>
        <property name="connection.username">root</property>
        <property name="connection.password">root</property>

        <property name="connection.pool_size">1</property>
        <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <property name="current_session_context_class">thread</property>
        <property name="show_sql">true</property>

        <mapping resource="domain/Pupil.hbm.xml"/>
    </session-factory>
</hibernate-configuration>

HibernateUtils.java

package utils;

import org.hibernate.SessionFactory;
import org.hibernate.HibernateException;
import org.hibernate.cfg.Configuration;

public class HibernateUtils {
    private static final SessionFactory sessionFactory;

    static {
        try {
            sessionFactory = new Configuration ().configure ().buildSessionFactory ();
        } catch (HibernateException he) {
            System.err.println (he);
            throw new ExceptionInInitializerError (he);
        }
    }

    public static SessionFactory getSessionFactory () {
        return sessionFactory;
    }
}

Runner.java – class for testing hibernate

import org.hibernate.Session;

import java.util.*;

import utils.HibernateUtils;
import domain.Pupil;

public class Runner {
    public static void main (String[] args) {
        Session s = HibernateUtils.getSessionFactory ().getCurrentSession ();

        s.beginTransaction ();
        List pups = s.createQuery ("from Pupil").list ();
        for (Object obj : pups) {
            System.out.println (obj);
        }
        s.getTransaction ().commit ();

        HibernateUtils.getSessionFactory ().close ();
    }
}

My libs: antlr-2.7.6.jar, asm.jar, asm-attrs.jar, cglib-2.1.3.jar, commons-collections-2.1.1.jar, commons-logging-1.0.4.jar, dom4j-1.6.1.jar, hibernate3.jar, jta.jar, log4j-1.2.11.jar, mysql-connector-java-5.1.7-bin.jar

Compile error: cannot resolve table pupils

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T19:30:38+00:00Added an answer on May 14, 2026 at 7:30 pm

    This has nothing to do with Hibernate, this is an IDEA “issue” and you need to configure it properly for tables names validation in hbm.xml. From this old thread:

    In order for IntelliJ to provide
    proper code completion and validation
    for database tables/columns, it needs
    to know about the database
    structure of your application as well.
    So, I’m referring to the
    IntelliJ datasource. Think of it as a
    “development-time datasource”,
    or something like that.

    To create one:
    Window -> Tool Windows -> Data sources
    Add (“plus” icon) -> JDBC data source

    As an alternative, you could try the
    “Import” button in the “Date
    sources” tool window. This makes
    IntelliJ search your project for some
    specific configuration files (like
    “hibernate.cfg.xml”), from which it
    can directly import a datasource
    definition.

    However, if that fails, you can always
    define a JDBC data source
    manually (jdbc url, driver jar, driver
    class, etc).

    Once you have a datasource configured,
    test it by opening an SQL console
    on it (“console” button in datasource
    tool window), and type some
    queries. IDEA should provide SQL code
    completion here, for table and
    column names.

    If this step works, go to the
    definition of the datasource, and
    invoke

    “Refresh Tables”. This makes IntelliJ
    retrieve the database structure.

    Next, open “Project Structure”
    (Ctrl-Shift-Alt-S).
    Select your Hibernate facet (though
    either “Facets” or “Modules”).

    The options screen for the Hibernate
    facet has a pane named “DataSources
    Mapping”. Here you can associate your
    Hiberante session factory with a
    specific IntelliJ datasource.

    After this step, SQL table/column code
    completion and validation should
    work in .hbm files as well.

    Applies to IDEA 7 also, read the whole thread if necessary.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 421k
  • Answers 421k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The architecture should be similar to that of NavigationController: you… May 15, 2026 at 10:57 am
  • Editorial Team
    Editorial Team added an answer Why not store this info in a flow-scoped variable? Something… May 15, 2026 at 10:57 am
  • Editorial Team
    Editorial Team added an answer The literal translation of your tar example would be: ADD_CUSTOM_TARGET(tar… May 15, 2026 at 10:57 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.