资源简介

java后台管理系统,集成OA,CRM,CMS,管理平台,包括代码自动生成,代码模板块

资源截图

代码片段和文件信息

package com.bootdo;

import org.mybatis.spring.annotation.MapperScan;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.transaction.annotation.EnableTransactionManagement;


@EnableAutoConfiguration(exclude = {
        org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class
})
@EnableTransactionManagement
@ServletComponentScan
@MapperScan(“com.bootdo.*.dao“)
@SpringBootApplication
@EnableCaching
public class BootdoApplication {
    /** Logger  */
    private final static Logger logger = LoggerFactory.getLogger(BootdoApplication.class);
    public static void main(String[] args) {
        SpringApplication.run(BootdoApplication.class args);
       logger.info(“ヾ(◍°∇°◍)ノ゙    bootdo启动成功      ヾ(◍°∇°◍)ノ゙\n“ +
                “ ______                    _   ______            \n“ +
                “|_   _ \\                  / |_|_   _ ‘.          \n“ +
                “  | |_) |   .--.    .--. ‘| |-‘ | | ‘. \\  .--.   \n“ +
                “  |  __‘. / .‘‘\\ \\/ .‘‘\\ \\| |   | |  | |/ .‘‘\\ \\ \n“ +
                “ _| |__) || \\__. || \\__. || | _| |_.‘ /| \\__. | \n“ +
                “|_______/  ‘.__.‘  ‘.__.‘ \\__/|______.‘  ‘.__.‘  “);
    }
//    /**
//     * it‘s for set http url auto change to https
//     */
//    @Bean
//    public embeddedServletContainerFactory servletContainer(){
//        TomcatembeddedServletContainerFactory tomcat=new TomcatembeddedServletContainerFactory(){
//            @Override
//            protected void postProcessContext(Context context) {
//                SecurityConstraint securityConstraint=new SecurityConstraint();
//                securityConstraint.setUserConstraint(“CONFIDENTIAL“);//confidential
//                SecurityCollection collection=new SecurityCollection();
//                collection.addPattern(“/*“);
//                securityConstraint.addCollection(collection);
//                context.addConstraint(securityConstraint);
//            }
//        };
//        tomcat.addAdditionalTomcatConnectors(httpConnector());
//        return tomcat;
//    }
//
//    @Bean
//    public Connector httpConnector(){
//        Connector connector=new Connector(“org.apache.coyote.http11.Http11NioProtocol“);
//        connector.setScheme(“http“);
//        connector.setPort(8080);
//        connector.setSecure(false);
//        connector.setRedirectPort(9443);
//        return connector;
//    }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-02 16:47  bootdo\
     目录           0  2018-08-02 17:43  bootdo\.git\
     文件        1126  2018-07-30 10:05  bootdo\.gitignore
     文件           4  2018-08-02 17:01  bootdo\.git\COMMIT_EDITMSG
     文件         298  2018-07-30 16:48  bootdo\.git\config
     文件          73  2018-07-30 16:17  bootdo\.git\description
     文件          23  2018-07-30 16:17  bootdo\.git\HEAD
     目录           0  2018-07-30 16:17  bootdo\.git\hooks\
     文件         478  2018-07-30 16:17  bootdo\.git\hooks\applypatch-msg.sample
     文件         896  2018-07-30 16:17  bootdo\.git\hooks\commit-msg.sample
     文件         189  2018-07-30 16:17  bootdo\.git\hooks\post-update.sample
     文件         424  2018-07-30 16:17  bootdo\.git\hooks\pre-applypatch.sample
     文件        1642  2018-07-30 16:17  bootdo\.git\hooks\pre-commit.sample
     文件        1348  2018-07-30 16:17  bootdo\.git\hooks\pre-push.sample
     文件        4951  2018-07-30 16:17  bootdo\.git\hooks\pre-rebase.sample
     文件        1239  2018-07-30 16:17  bootdo\.git\hooks\prepare-commit-msg.sample
     文件        3610  2018-07-30 16:17  bootdo\.git\hooks\update.sample
     文件      174409  2018-08-02 17:01  bootdo\.git\index
     目录           0  2018-07-30 16:17  bootdo\.git\info\
     文件         240  2018-07-30 16:17  bootdo\.git\info\exclude
     目录           0  2018-07-30 16:46  bootdo\.git\logs\
     文件        2166  2018-08-02 17:01  bootdo\.git\logs\HEAD
     目录           0  2018-07-30 16:48  bootdo\.git\logs\refs\
     目录           0  2018-07-30 16:46  bootdo\.git\logs\refs\heads\
     文件        2166  2018-08-02 17:01  bootdo\.git\logs\refs\heads\master
     目录           0  2018-07-30 16:48  bootdo\.git\logs\refs\remotes\
     目录           0  2018-07-30 16:48  bootdo\.git\logs\refs\remotes\origin\
     文件         462  2018-08-02 17:01  bootdo\.git\logs\refs\remotes\origin\master
     目录           0  2018-07-30 16:18  bootdo\.git\objects\
     目录           0  2018-07-30 16:46  bootdo\.git\objects\00\
     文件         948  2018-07-30 16:46  bootdo\.git\objects\00\0b19c9b3eff29fec91bed634109360287cd9b4
............此处省略6458个文件信息

评论

共有 条评论