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
925 B
28 lines
925 B
6 months ago
|
package com;
|
||
|
|
||
|
import com.hfkj.common.utils.SpringContextUtil;
|
||
|
import org.mybatis.spring.annotation.MapperScan;
|
||
|
import org.springframework.boot.SpringApplication;
|
||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
||
|
import org.springframework.context.ApplicationContext;
|
||
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
||
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||
|
|
||
|
@SpringBootApplication
|
||
|
//@ComponentScan
|
||
|
@EnableTransactionManagement
|
||
|
@EnableScheduling
|
||
|
@ServletComponentScan
|
||
|
@MapperScan("com.hfkj.dao")
|
||
|
public class BWebApplication
|
||
|
{
|
||
|
public static void main( String[] args )
|
||
|
{
|
||
|
ApplicationContext app = SpringApplication.run(BWebApplication.class, args);
|
||
|
SpringContextUtil.setApplicationContext(app);
|
||
|
}
|
||
|
|
||
|
}
|