Challenge: Query
It's time to practice
In the previous chapter, we implemented 2 methods in the Employee service layer. We used queries to fetch the necessary data, and now you will have to do a similar task.
Your work will involve 4 classes:
DepartmentDaoImpl;EmployeeDaoImpl;DepartmentServiceImpl;EmployeeServiceImpl.
You need to implement methods such as getAll and getEmployeesWithSalaryMoreThan(Double salary). To implement these methods, you will need to use either Query or NativeQuery, depending on what you choose to use, HQL or SQL. You will also need to use parameter substitution and return a list.
After you implement the methods, you can test your solution in the Main class, and then run the tests that I have written for you to check if you have implemented everything correctly.
Note
Don't forget to set up a connection to your database in
hibernate.cfg.xml.
Дякуємо за ваш відгук!
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Can you explain how to use HQL vs SQL in this context?
What is the difference between Query and NativeQuery in Hibernate?
Can you show an example of parameter substitution in a query?
Awesome!
Completion rate improved to 4.35
Challenge: Query
Свайпніть щоб показати меню
It's time to practice
In the previous chapter, we implemented 2 methods in the Employee service layer. We used queries to fetch the necessary data, and now you will have to do a similar task.
Your work will involve 4 classes:
DepartmentDaoImpl;EmployeeDaoImpl;DepartmentServiceImpl;EmployeeServiceImpl.
You need to implement methods such as getAll and getEmployeesWithSalaryMoreThan(Double salary). To implement these methods, you will need to use either Query or NativeQuery, depending on what you choose to use, HQL or SQL. You will also need to use parameter substitution and return a list.
After you implement the methods, you can test your solution in the Main class, and then run the tests that I have written for you to check if you have implemented everything correctly.
Note
Don't forget to set up a connection to your database in
hibernate.cfg.xml.
Дякуємо за ваш відгук!