I tried to compile very easy program with saving easy table with 3 users to http://localhost/phpmyadmin to empty database named ,,users'' but it still show me exceptions which you can see.
1 exception org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scriptDataSourceInitializer' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceInitializationConfiguration$SharedCredentialsDataSourceInitializationConfiguration.class]: Invocation of init method failed; nested exception is org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of class path resource [data.sql]: insert into user (name,surname,email,city) values ('Przemek','Mazurek','przemyslaw.mazurek@gmail.com','Warsaw'), ('Anna', 'Grodna','anna.grodna@gmail.com','Lublin'), ('Zosia','Gulina','zosia.gulina@gmail.com','Praga'); nested exception is java.sql.SQLSyntaxErrorException: Table 'users.user' doesn't exist
2 exception: Caused by: java.sql.SQLSyntaxErrorException: Table 'users.user' doesn't exist
3 exception: Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of class path resource [data.sql]: insert into user (name,surname,email,city) values ('Przemek','Mazurek','przemyslaw.mazurek@gmail.com','Warsaw'), ('Anna', 'Grodna','anna.grodna@gmail.com','Lublin'), ('Zosia','Gulina','zosia.gulina@gmail.com','Praga'); nested exception is java.sql.SQLSyntaxErrorException: Table 'users.user' doesn't exist
[applications.properties file][1]
[User and Entity class][2]
[data.sql file][3]
[User Repository][4]
[1]: https://i.stack.imgur.com/R8A5T.png
[2]: https://i.stack.imgur.com/29Yym.png
[3]: https://i.stack.imgur.com/u4aWt.png
[4]: https://i.stack.imgur.com/laAB3.png