| | |
| | | package com.ks.tool.bkz; |
| | | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.context.annotation.EnableAspectJAutoProxy; |
| | | import org.springframework.transaction.annotation.EnableTransactionManagement; |
| | | |
| | | @SpringBootApplication |
| | | @EnableTransactionManagement |
| | | @MapperScan(basePackages = "com.ks.tool.bkz.dao") |
| | | @EnableAspectJAutoProxy(proxyTargetClass = true) |
| | | public class BkzApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(BkzApplication.class, args); |
| | | } |
| | | |
| | | |
| | | } |