Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

cybozu/spring-data-jdbc-template

Open more actions menu

Repository files navigation

Spring Data Jdbc Template

How to Configure

Enable Repositories

Annotate your configuration class with @EnableJdbcTemplateRepositories.

Example:

@EnableJdbcTemplateRepositories(basePackages = "your.repository.package")
@Configuration
public class ApplicationConfig {
    
} 

Register NamedParameterJdbcOperations Bean

This library uses NamedParameterJdbcTemplate. You should register its bean.

Example:

@Bean
public NamedParameterJdbcTemplate namedParameterJdbcTemplate() {
  return new NamedParameterJdbcTemplate();
}

License

See LICENSE.txt.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.