Code Monkey home page Code Monkey logo

hibernatesupport's Introduction

HibernateSupport library allow easyly connect to database using hibernate

Here is sample how start with it:

(pom xml)
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependency>
    <groupId>com.github.degr</groupId>
    <artifactId>HibernateSupport</artifactId>
    <version>c957e13f95</version>
</dependency>
public class AppInitializer implements WebApplicationInitializer {

public static final String BASE_PACKAGE = "org.forweb.yourproject";
  @Override
  public void onStartup(ServletContext container) {
    HibernateSupport.init("localhost", "databaseUser", "databaseUserPassword", "database_name", "org.forweb.entity");
////////////////
@Configuration
@ComponentScan(basePackages = {
        BASE_PACKAGE,
        "org.forweb.database"
})
@EnableJpaRepositories(AppInitializer.BASE_PACKAGE + ".dao")
public class SpringConfiguration {

/////////////////
package org.forweb.entity;

import org.forweb.database.AbstractEntity;
import javax.persistence.Entity;

@Entity
public class Map extends AbstractEntity {
    private String title;
    private Integer x;
    private Integer y;
    //getters and setters
}
/////////////////////////////
package org.forweb.dao;

import org.forweb.entity.Map;
import org.forweb.database.AbstractDao;
import org.springframework.stereotype.Repository;

@Repository
public interface MapDao extends AbstractDao<Map> {
}

////////////////////////
package org.forweb.service;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.PostConstruct;
import java.util.List;

@Service
public class MapService {
  @Autowired
  MapDao mapDao;

  @PostConstruct
  public void postConstruct() {
      List<Map> maps = mapDao.findAll();
      System.out.println(maps);
  }

That's all

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.