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.
28 lines
835 B
28 lines
835 B
1 year ago
|
package com.charge.task;
|
||
|
|
||
|
import org.mybatis.spring.annotation.MapperScan;
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.cloud.netflix.feign.EnableFeignClients;
|
||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
@EnableFeignClients
|
||
|
@SpringBootApplication
|
||
|
@EnableScheduling
|
||
|
@MapperScan(basePackages = "com.charge.task.dao")
|
||
|
@RestController
|
||
|
public class TaskApplication {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
SpringApplication.run(TaskApplication.class, args);
|
||
|
}
|
||
|
|
||
|
|
||
|
@RequestMapping("/")
|
||
|
public String index() {
|
||
|
return "Hello,task micro service!!!";
|
||
|
}
|
||
|
}
|