Skip to content

Instantly share code, notes, and snippets.

View TheKojuEffect's full-sized avatar

Kapil Koju TheKojuEffect

View GitHub Profile
@staltz
staltz / introrx.md
Last active June 13, 2024 19:58
The introduction to Reactive Programming you've been missing
@krams915
krams915 / SpringDataConfig.java
Created December 2, 2012 01:47
SpringDataConfig JavaConfig
package org.krams.config;
import javax.sql.DataSource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.orm.jpa.JpaTransactionManager;
@dgomesbr
dgomesbr / SpringConfig.java
Created October 9, 2012 20:23
Spring 3.1 Configurable Class :)
package com.bemobi.wap.config;
import java.util.Properties;
import javax.persistence.EntityManagerFactory;
import javax.sql.DataSource;
import org.hibernate.ejb.HibernatePersistence;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;