All Questions
6 questions
1
vote
1
answer
423
views
Inserting large number of rows into database with Spring boot
I need to insert many million rows + many GB of data into a database for a project that uses Spring boot. I recreated a minimal example with a one to many relationship and am trying to find the ...
5
votes
3
answers
3k
views
Using static final Strings for SQL Query in Spring Boot
This is regarding code quality and coding standards with respect to Spring Ecosystem. Here there are two methods:
isRecordExists is using a class level static ...
1
vote
1
answer
439
views
Simple JDBC Query By Example (QBE) for Spring JDBC Template
This is a quick and dirty QBE method that covers about 60% of my use cases in my DAO. I just wanted to see if someone would take a quick look at it to see if there are any issues.
...
2
votes
2
answers
9k
views
Transaction in spring boot
I am using spring boot in my application.
...
5
votes
2
answers
2k
views
Authentication via LDAP and authorization via JDBC
I have a custom AuthenticationProvider for getting authentication via LDAP and authorization via JDBC. It's running but I think it's not the best way.
My custom ...
3
votes
1
answer
12k
views
Reading SQL file using injection and utility reader
I've come up with a way to externalize and read in my .sql files instead of having them in-code as strings. Note that I'm keeping the .sql file in the same package as the DAO (NOT separated into a ...