Example usage for org.springframework.jdbc.core JdbcTemplate getClass

List of usage examples for org.springframework.jdbc.core JdbcTemplate getClass

Introduction

In this page you can find the example usage for org.springframework.jdbc.core JdbcTemplate getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:org.perconsys.dao.implement.UserJdbcTpl.java

@Override
public void test() {
    //JdbcDaoSupport t = new JdbcDaoSupport();
    JdbcTemplate dbtpl = this.getJdbcTemplate();
    System.out.println(dbtpl.getClass());
    System.out.println("UserDAO:test");
    System.out.println(dbtpl.getClass());
}