package com.github.ffq; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.jdbc.core.JdbcTemplate; /** * @author luwei **/ @SpringBootApplication @EnableAspectJAutoProxy(exposeProxy = true) public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }