首页>代码>ssm整合vue实现会员管理系统,含1w字论文,可做毕业设计参考实例>/会员管理系统/member/member-admin/src/main/java/co/yixiang/AppRun.java
/**
 * Copyright (C) 2018-2022
 * All rights reserved, Designed By www.member
 * 注意:
 * 本软件为www.member开发研制
 */
package co.yixiang;

import co.yixiang.annotation.AnonymousAccess;
import co.yixiang.utils.SpringContextHolder;
import com.binarywang.spring.starter.wxjava.miniapp.config.WxMaAutoConfiguration;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author member
 * @date 2022/10/15 9:20:19
 */
@EnableAsync
@RestController
@SpringBootApplication(exclude = {WxMaAutoConfiguration.class})
@EnableTransactionManagement
@MapperScan(basePackages = {"co.yixiang.modules.*.service.mapper", "co.yixiang.config"})
public class AppRun {

    public static void main(String[] args) {
        SpringApplication.run(AppRun.class, args);
    }

    @Bean
    public SpringContextHolder springContextHolder() {
        return new SpringContextHolder();
    }

    @Bean
    public ServletWebServerFactory webServerFactory() {
        TomcatServletWebServerFactory fa = new TomcatServletWebServerFactory();
        fa.addConnectorCustomizers(connector -> connector.setProperty("relaxedQueryChars", "[]{}"));
        return fa;
    }

    /**
     * 访问首页提示
     * @return /
     */
    @GetMapping("/")
    @AnonymousAccess
    public String index() {
        return "Backend service started successfully";
    }
}
最近下载更多
陈小灏  LV18 2月25日
java菜鸟1号  LV7 2024年12月4日
zolscy  LV24 2024年11月27日
withyouatdusk  LV2 2024年9月29日
wenjie_5419  LV13 2024年7月10日
15342201772  LV9 2024年6月25日
TY0165  LV20 2024年6月17日
bbczlitao  LV9 2024年6月11日
李怡桦  LV1 2024年6月7日
qwe6002  LV10 2024年5月24日
最近浏览更多
叉烧君  LV3 3月26日
xiaoaitx  LV8 1月1日
11999333  LV1 2024年12月23日
dengge123  LV14 2024年12月13日
java菜鸟1号  LV7 2024年12月4日
zolscy  LV24 2024年11月27日
1123efd 2024年11月11日
暂无贡献等级
972709683  LV1 2024年10月31日
yangchengshuai  LV15 2024年10月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友