• 大小: 1.03MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-28
  • 语言: Html/CSS
  • 标签: springBoot  

资源简介

该项目为springBoot单点登录实例,其中包含了权限设置。前端为HTML写的简单示例。开发工具为IDEA,启动项目根据模块划分,1、mysql-->MysqlTest(创建数据库实例,根据实际情况可自行更改,)。2、web1。2、web2

资源截图

代码片段和文件信息

package com.test.login;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.embedded.ServletContextInitializer;
import org.springframework.context.annotation.ComponentScan;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;

@SpringBootApplication
@ComponentScan(basePackages = “com.test“)
public class LoginApplication implements ServletContextInitializer {
    public static void main(String[] args) {
        SpringApplication.run(LoginApplication.class args);
    }

    @Override
    public void onstartup(ServletContext servletContext)
            throws ServletException {
        servletContext.getSessionCookieConfig().setName(“SESSIONID“);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        312  2017-12-05 14:54  spring-boot-sso\.git\config

     文件         73  2017-12-05 14:52  spring-boot-sso\.git\description

     文件         23  2017-12-05 14:54  spring-boot-sso\.git\HEAD

     文件        478  2017-12-05 14:52  spring-boot-sso\.git\hooks\applypatch-msg.sample

     文件        896  2017-12-05 14:52  spring-boot-sso\.git\hooks\commit-msg.sample

     文件        189  2017-12-05 14:52  spring-boot-sso\.git\hooks\post-update.sample

     文件        424  2017-12-05 14:52  spring-boot-sso\.git\hooks\pre-applypatch.sample

     文件       1642  2017-12-05 14:52  spring-boot-sso\.git\hooks\pre-commit.sample

     文件       1348  2017-12-05 14:52  spring-boot-sso\.git\hooks\pre-push.sample

     文件       4898  2017-12-05 14:52  spring-boot-sso\.git\hooks\pre-rebase.sample

     文件        544  2017-12-05 14:52  spring-boot-sso\.git\hooks\pre-receive.sample

     文件       1492  2017-12-05 14:52  spring-boot-sso\.git\hooks\prepare-commit-msg.sample

     文件       3610  2017-12-05 14:52  spring-boot-sso\.git\hooks\update.sample

     文件      58226  2017-12-05 14:54  spring-boot-sso\.git\index

     文件        240  2017-12-05 14:52  spring-boot-sso\.git\info\exclude

     文件        208  2017-12-05 14:54  spring-boot-sso\.git\logs\HEAD

     文件        208  2017-12-05 14:54  spring-boot-sso\.git\logs\refs\heads\master

     文件        208  2017-12-05 14:54  spring-boot-sso\.git\logs\refs\remotes\origin\HEAD

     文件      14148  2017-12-05 14:54  spring-boot-sso\.git\objects\pack\pack-ff3c3e9c5b5b910659e74eb418af758c1def6eea.idx

     文件     339618  2017-12-05 14:54  spring-boot-sso\.git\objects\pack\pack-ff3c3e9c5b5b910659e74eb418af758c1def6eea.pack

     文件        114  2017-12-05 14:54  spring-boot-sso\.git\packed-refs

     文件         41  2017-12-05 14:54  spring-boot-sso\.git\refs\heads\master

     文件         32  2017-12-05 14:54  spring-boot-sso\.git\refs\remotes\origin\HEAD

     文件         15  2017-12-05 14:54  spring-boot-sso\.idea\.name

     文件       1687  2017-12-05 14:54  spring-boot-sso\.idea\compiler.xml

     文件         76  2017-12-05 14:54  spring-boot-sso\.idea\copyright\profiles_settings.xml

     文件       2561  2017-12-05 14:54  spring-boot-sso\.idea\encodings.xml

     文件       1444  2017-12-05 14:55  spring-boot-sso\.idea\inspectionProfiles\Project_Default.xml

     文件        462  2017-12-05 14:54  spring-boot-sso\.idea\libraries\Maven__antlr_antlr_2_7_7.xml

     文件        514  2017-12-05 14:54  spring-boot-sso\.idea\libraries\Maven__aopalliance_aopalliance_1_0.xml

............此处省略564个文件信息

评论

共有 条评论