You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.simple;
-
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
-
- import springfox.documentation.swagger2.annotations.EnableSwagger2;
-
- /**
- * @author chenkx
- * @date 2017-12-26
- */
- @SpringBootApplication
- @MapperScan(basePackages = {"com.simple.mapper"})
- @EnableSwagger2
- public class UserApplication {
-
- public static void main(String[] args) {
- SpringApplication.run(UserApplication.class, args);
- }
- }
|