• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

First Hibernate Test Application Errors out

 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think my hbm.xml, cfg, and table's class and the main class are all ok but when I run the application as java application I get an error saying
Exception in thread "main" java.lang.NullPointerException
at hibTest.AddName.main(AddName.java:20)

Can somehelp.
adding the code here
testt.hbm.xml


hibernate.cfg.xml here
i have oracle database and i m omitting connection url and username and password


testt.java


AddName.java
 
Marshal
Posts: 28226
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Line 20 of your code is this one, right?


(Check that in your Java editor. If that isn't line 20, then look at the line of code which is line 20.)

If so, that means that the "sess" variable is null. It hasn't been assigned a value.
 
Mary Chellapa
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes it is, but sess.save worked so sess may not be null

but i do think the issue may be with hibernate.cfg.xml
cant figure out what
 
Mary Chellapa
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What should be directory structure?
is my cfg.xml placed in wrong place ?
reply
    Bookmark Topic Watch Topic
  • New Topic