Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
606cfee3
Commit
606cfee3
authored
Feb 14, 2020
by
吴学德
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改多余类
parent
eb5d82a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
new-user/src/main/java/com/winsun/SchoolServiceApplication.java
+0
-34
No files found.
new-user/src/main/java/com/winsun/SchoolServiceApplication.java
deleted
100644 → 0
View file @
eb5d82a4
package
com
.
winsun
;
import
com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
;
import
org.mybatis.spring.annotation.MapperScan
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.cloud.context.config.annotation.RefreshScope
;
import
org.springframework.cloud.netflix.eureka.EnableEurekaClient
;
import
org.springframework.cloud.openfeign.EnableFeignClients
;
import
org.springframework.context.annotation.EnableAspectJAutoProxy
;
import
org.springframework.scheduling.annotation.EnableScheduling
;
/**
* 系统启动入口
* @author Liph
*/
@EnableAspectJAutoProxy
(
exposeProxy
=
true
)
@EnableEurekaClient
@SpringBootApplication
(
exclude
=
{
DruidDataSourceAutoConfigure
.
class
})
@RefreshScope
@EnableFeignClients
({
"com.winsun"
,
"com.winsun.auth.core"
})
@MapperScan
(
basePackages
=
{
"com.winsun.*.mapper"
,
"com.winsun.mapper"
})
@EnableScheduling
// 开启定时任务
public
class
SchoolServiceApplication
{
private
final
static
Logger
logger
=
LoggerFactory
.
getLogger
(
SchoolServiceApplication
.
class
);
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
SchoolServiceApplication
.
class
,
args
);
logger
.
info
(
"集约平台核心服务系统模块启动成功!!!"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment