does package does not exist?

1

Hi, I have this problem importing some things, I'm trying to use hibernate, but I see these errors.

and these are the libraries that I'm using, I need to add libraries or where I can get them. Looking at other similar questions I saw that they mentioned emptying the cache, I did it but I still have this problem. I would greatly appreciate your help.

    
asked by Aldo Diaz Chaires 26.11.2017 в 03:47
source

1 answer

1

You have an error when importing the packages, you are doing it this way:

import.java.util.List

The period after the word import is incorrect, you should do it this way:

import java.util.List
    
answered by 26.11.2017 / 04:47
source