tr.com.lucidcode.config.DaoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kite-framework Show documentation
Show all versions of kite-framework Show documentation
A Web Application Framework providing DRY use of rich UI components.
The newest version!
package tr.com.lucidcode.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import tr.com.lucidcode.dao.AccountDao;
@Configuration
@ComponentScan("tr.com.lucidcode.dao")
public class DaoConfiguration {
@Bean
public AccountDao accountDao() {
return new AccountDao();
}
}