- Timestamp:
- 02/08/23 12:10:52 (22 months ago)
- Branches:
- master
- Children:
- 86e187f
- Parents:
- c05cd97 (diff), eb36f39 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/repository/FilmRepository.java
rc05cd97 r2a98e34 6 6 import org.springframework.data.jpa.repository.query.Procedure; 7 7 import org.springframework.data.repository.query.Param; 8 import org.springframework.jdbc.core.JdbcTemplate; 8 9 10 import javax.swing.tree.RowMapper; 9 11 import javax.transaction.Transactional; 12 import java.sql.ResultSet; 13 import java.sql.SQLException; 10 14 import java.util.List; 11 15 @Transactional … … 13 17 @Procedure("project.getFilmsFromCinema") 14 18 List<FilmsReturnTable> getFilmsFromCinema(int id); 19 15 20 }
Note:
See TracChangeset
for help on using the changeset viewer.