• Java Web 整合案例


    pom.xml

    
    

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>ben</groupId>
    <artifactId>quartzDemo</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>quartzDemo Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <properties>

    
    

    <!-- <spring.version>4.1.3.RELEASE</spring.version> <hibernate.version>4.3.5.Final</hibernate.version> -->
    <spring.version>5.0.4.RELEASE</spring.version>
    <hibernate.version>5.2.16.Final</hibernate.version>
    <hibernate-validator.version>4.3.2.Final</hibernate-validator.version>
    <aspectj.version>1.8.10</aspectj.version>
    <cglib.version>3.2.5</cglib.version>
    <activiti.version>5.22.0</activiti.version>
    <jackson.version>2.9.3</jackson.version>
    <shiro.version>1.4.0</shiro.version>
    <jstl.version>1.2</jstl.version>
    <taglib.version>1.1.2</taglib.version>
    <servlet.version>3.0-alpha-1</servlet.version>
    <c3p0.version>0.9.1.2</c3p0.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

    </properties>

    
    

    <dependencies>
    <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
    </dependency>

    
    

    <!-- spring begin -->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-orm</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>${spring.version}</version>
    <scope>test</scope>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>${spring.version}</version>
    </dependency>
    <!-- spring end -->
    <!-- spring aop -->
    <dependency>
    <groupId>aopalliance</groupId>
    <artifactId>aopalliance</artifactId>
    <version>1.0</version>
    </dependency>
    <dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjrt</artifactId>
    <version>${aspectj.version}</version>
    </dependency>
    <dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>${aspectj.version}</version>
    </dependency>

    
    

    <dependency>
    <groupId>cglib</groupId>
    <artifactId>cglib-nodep</artifactId>
    <version>${cglib.version}</version>
    </dependency>

    
    

    <!-- hibernate 相关包 -->
    <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>${hibernate.version}</version>
    </dependency>

    <dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>${jstl.version}</version>
    </dependency>
    <dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>${taglib.version}</version>
    </dependency>
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>${servlet.version}</version>
    <scope>provided</scope>
    </dependency>
    <!-- <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-ehcache</artifactId>
    <version>5.2.16.Final</version> </dependency> -->

    
    

    <dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.46</version>
    </dependency>

    
    

    <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.7.7</version>
    </dependency>

    
    

    <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.7.7</version>
    <scope>test</scope>
    </dependency>
    <dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.17</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.quartz-scheduler/quartz -->
    <dependency>
    <groupId>org.quartz-scheduler</groupId>
    <artifactId>quartz</artifactId>
    <version>2.3.0</version>
    </dependency>
    <!-- activiti -->
    <!-- https://mvnrepository.com/artifact/org.activiti/activiti-spring -->
    <dependency>
    <groupId>org.activiti</groupId>
    <artifactId>activiti-spring</artifactId>
    <version>${activiti.version}</version>
    </dependency>
    <dependency>
    <groupId>org.activiti</groupId>
    <artifactId>activiti-engine</artifactId>
    <version>${activiti.version}</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/com.github.penggle/kaptcha -->
    <dependency>
    <groupId>com.github.penggle</groupId>
    <artifactId>kaptcha</artifactId>
    <version>2.3.2</version>
    </dependency>
    <dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>${jackson.version}</version>
    </dependency>
    <dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-annotations</artifactId>
    <version>${jackson.version}</version>
    </dependency>
    <dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>${jackson.version}</version>
    </dependency>
    <!--shiro 核心包 -->
    <dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-core</artifactId>
    <version>${shiro.version}</version>
    </dependency>

    
    

    <dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-web</artifactId>
    <version>${shiro.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-spring</artifactId>
    <version>${shiro.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-ehcache</artifactId>
    <version>${shiro.version}</version>
    </dependency>
    <!-- shiro需要依赖servlet api -->
    <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>4.0.0</version>
    <scope>provided</scope>
    </dependency>
    <!-- jstl -->
    <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
    </dependency>
    <dependency>
    <groupId>c3p0</groupId>
    <artifactId>c3p0</artifactId>
    <version>${c3p0.version}</version>
    </dependency>
    </dependencies>
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <!-- maven compiler plugin版本必须正确否则下面设置的JDK版本不起作用 -->
    <version>3.5.1</version>
    <configuration>
    <source>1.8</source>
    <target>1.8</target>
    </configuration>
    </plugin>
    </plugins>
    <finalName>quartzDemo</finalName>
    </build>
    </project>

     

    application.properties

    #common
    
    adminPath=/admin
    
    
    ## MySQL
    
    hibernate.connection.driver_class=com.mysql.jdbc.Driver
    hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
    hibernate.connection.driver_class=com.mysql.jdbc.Driver
    hibernate.connection.url=jdbc:mysql://127.0.0.1:3306/heartstore
    hibernate.connection.username=root
    hibernate.connection.password=root
    
    ##Base
    
    hibernate.current_session_context_class=thread
    hibernate.connection.provider_class=org.hibernate.connection.C3P0ConnectionProvider
    hibernate.show_sql=true
    hibernate.format_sql true
    hibernate.hbm2ddl.auto=update ## Oracle #hibernate.dialect org.hibernate.dialect.Oracle8iDialect #hibernate.dialect org.hibernate.dialect.Oracle9iDialect #hibernate.dialect org.hibernate.dialect.Oracle10gDialect #hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver #hibernate.connection.username ora #hibernate.connection.password ora #hibernate.connection.url jdbc:oracle:thin:@localhost:1521:orcl #hibernate.connection.url jdbc:oracle:thin:@localhost:1522:XE ## PostgreSQL #hibernate.dialect org.hibernate.dialect.PostgreSQLDialect #hibernate.connection.driver_class org.postgresql.Driver #hibernate.connection.url jdbc:postgresql:template1 #hibernate.connection.username pg #hibernate.connection.password

    ApplicationContext.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop.xsd">
    
    
        <!-- 读取配置文件 -->
        <context:property-placeholder
            ignore-unresolvable="true" location="classpath*:/application.properties" />
    
        <!-- 自动扫描包下面 类 属性 方法 上的注解 -->
        <context:component-scan base-package="com.quartzDemo"></context:component-scan>
    
        <!-- 开启aop操作 -->
        <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
    
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource"></property>
         <property name="packagesToScan" value="com.quartzDemo" /> <property name="hibernateProperties"> <props> <prop key="hibernate.connection.driver_class">${hibernate.connection.driver_class}</prop> <prop key="hibernate.connection.url">${hibernate.connection.url}</prop> <prop key="hibernate.connection.username">${hibernate.connection.username}</prop> <prop key="hibernate.connection.password">${hibernate.connection.password}</prop> <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop> <prop key="hibernate.dialect">${hibernate.dialect}</prop> <prop key="hibernate.current_session_context_class">${hibernate.current_session_context_class}</prop> <prop key="hibernate.connection.provider_class">${hibernate.connection.provider_class}</prop> </props> </property> </bean> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="minPoolSize" value="10" /> <property name="maxPoolSize" value="100" /> <!-- 最大空闲时间,超过该时间则连接被丢弃。若为0则永不丢弃。Default: 0 --> <property name="maxIdleTime" value="1800" /> <!-- 当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。 --> <property name="acquireIncrement" value="3" /> <!-- JDBC的标准参数,用以控制数据源内加载的PreparedStatements数量。但由于预缓存的statements属于单个connection而不是整个连接池。所以设置这个参数需要考虑到多方面的因素。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。 --> <property name="maxStatements" value="100" /> <property name="initialPoolSize" value="10" /> <!-- 每隔多少秒检查所有连接池中的空闲连接。 --> <property name="idleConnectionTestPeriod" value="120" /> </bean> </beans>

    springMVC.xml

    <?xml version="1.1" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
        xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:aop="http://www.springframework.org/schema/aop"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
        
        
        <context:component-scan base-package="com.quartzDemo"/>
        <!-- 適配器注解驅動 -->
        <mvc:annotation-driven></mvc:annotation-driven>
        <!-- 定义JSP文件的位置 -->
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/view/" />
            <property name="suffix" value=".jsp" />
        </bean>
        <!-- ... -->
    
    </beans>

    shiro.xml

    <?xml version="1.1" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
            http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.2.xsd"
        default-lazy-init="true">
    
        <description>Shiro安全配置</description>
        
        <!-- 读取配置文件 -->
        <context:property-placeholder ignore-unresolvable="true" location="classpath*:/application.properties" />
    
        <!-- 保证实现了Shiro内部lifecycle函数的bean执行 -->
        <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>
        
        <bean id="userRealm" class="com.quartzDemo.common.shiro.UserRealm" />
        <bean id="myCaptchaFilter" class="com.quartzDemo.common.shiro.CaptchaFormAuthenticationFilter"></bean>
        
        <!-- Shiro安全管理器 :Shiro的主要业务层对象基于web的应用程序 ref是对应的配置或者类名,-->
        <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
            <property name="realm" ref="userRealm" />
            <property name="cacheManager" ref="shiroEhcacheManager" />
        </bean>
         
        <!-- Shiro Filter -->
        <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
            <!-- Shiro的核心安全接口,这个属性是必须的 -->  
            <property name="securityManager" ref="securityManager" />
            <!-- 要求登录时的链接(登录页面地址),非必须的属性,默认会自动寻找Web工程根目录下的"/login.jsp"页面 -->
            <property name="loginUrl" value="${adminPath}/login" />
            <!-- 登录成功后要跳转的连接-->
            <property name="successUrl" value="${adminPath}" />
            <!-- 用户访问未对其授权的资源时,所显示的连接 -->  
            <!-- <property name="unauthorizedUrl" value="/"></property>   -->
                
            <!-- "anon"访问是不需要认证控制的,主要是用于用户登录和退出 -->
            <!-- "authc"访问是需要认证控制的,就是说只有通过认证的用户才可以访问该资源。如果用户直接在地址栏中,系统会自动跳转至登录页面,要求用户先进行身份认证 -->
            <property name="filterChainDefinitions">
                <value>
                    /static/** = anon
                    ${adminPath}/login = authc
                    ${adminPath}/** = user
                    /rest/**=authcBasic
                </value>
            </property>
            <property name="filters">
                <map>
                    <entry key="authc" value-ref="myCaptchaFilter"/>
                </map>
            </property>
        </bean>
        
        <!--  缓存管理:用户授权信息Cache, 采用EhCache -->
        <bean id="shiroEhcacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">
            <property name="cacheManagerConfigFile" value="classpath:ehcache-shiro.xml"/>
        </bean>
                
        <!-- 
            AOP式方法级权限检查:开启Shiro的注解(如@RequiresRoles,@RequiresPermissions),
            需借助SpringAOP扫描使用Shiro注解的类,并在必要时进行安全逻辑验证  
        -->
        <bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor">
            <property name="proxyTargetClass" value="true" />
        </bean>
        <bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
            <property name="securityManager" ref="securityManager"/>
        </bean>
    </beans>

    ehcache-shiro.xml

    <ehcache updateCheck="false" name="shiroCache">
    
        <defaultCache maxElementsInMemory="10000" eternal="false"
            timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="false"
            diskPersistent="false" diskExpiryThreadIntervalSeconds="120" />
    </ehcache>

    web.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 
    http://www.springmodules.org/schema/cache/springmodules-cache.xsd 
    http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
    http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    version="3.1"
    metadata-complete="true">
    <display-name>Archetype Created Web Application</display-name>
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        classpath*:/applicationContext.xml,
        classpath*:/shiro.xml,
    </param-value>
    </context-param>
    
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener
    </listener-class>
    </listener>
    
    <!-- 配置  Shiro 的 Filter -->  
     <filter>  
     <description>shiro 权限拦截</description>  
     <filter-name>shiroFilter</filter-name>  
     <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>  
     <init-param>  
         <param-name>targetFilterLifecycle</param-name>  
         <param-value>true</param-value>  
     </init-param>  
     </filter>  
     <filter-mapping>  
         <filter-name>shiroFilter</filter-name>  
         <url-pattern>/*</url-pattern>  
     </filter-mapping>  
     
    <!-- springMVC -->
    <servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:/springMVC.xml</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>springMVC</servlet-name>
    <url-pattern>/</url-pattern>
    </servlet-mapping>
    </web-app>

    CaptchaFormAuthenticationFilter

    package com.quartzDemo.common.shiro;
    
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import org.apache.shiro.authc.AuthenticationToken;
    import org.apache.shiro.web.filter.authc.FormAuthenticationFilter;
    import org.apache.shiro.web.util.WebUtils;
    import antlr.CppCodeGenerator;
    
    
    public class CaptchaFormAuthenticationFilter extends FormAuthenticationFilter {
        
        private final static String DEFAULT_CAPTCHA_PARAM="captcha";
        
        private String captchaParam=DEFAULT_CAPTCHA_PARAM;
        public String  getCaptchaParam()
        {
            return captchaParam;
        }
        
        /**
         * 获取用户请求表单中输入的验证码  
         * @param request
         * @return
         */
        public String getCaptcha(ServletRequest request)
        {
            return WebUtils.getCleanParam(request, getCaptchaParam());
        }
        @Override
        protected AuthenticationToken createToken(ServletRequest request, ServletResponse response) {
            // TODO Auto-generated method stub
              String userName = getUsername(request);
              String password = getPassword(request);
              boolean remerberMe=isRememberMe(request);
              String captcha=getCaptcha(request);
              return new CaptchaToken(userName,password,remerberMe,captcha);
        }
        
    }

    CaptchaToken

    package com.quartzDemo.common.shiro;
    
    import org.apache.shiro.authc.UsernamePasswordToken;
    
    public class CaptchaToken extends UsernamePasswordToken {
        private static final long serialVersionUID = -5022552849922860407L;
    
        private String userName;
        
        private char[] password;
        
        private boolean rememberMe;
        
        private String captcha;
    
        public String getUserName() {
            return userName;
        }
    
        public void setUserName(String userName) {
            this.userName = userName;
        }
    
        public char[] getPassword() {
            return password;
        }
    
        public void setPassword(char[] password) {
            this.password = password;
        }
    
        public boolean isRememberMe() {
            return rememberMe;
        }
    
        public void setRememberMe(boolean rememberMe) {
            this.rememberMe = rememberMe;
        }
    
        public String getCaptcha() {
            return captcha;
        }
    
        public void setCaptcha(String captcha) {
            this.captcha = captcha;
        }
        
        public CaptchaToken()
        {
            
        }
        public CaptchaToken(String userName, String password, boolean rememberMe, String captcha) {
            super();
            this.userName = userName;
            this.password=password != null ? password.toCharArray() : null;
            this.rememberMe = rememberMe;
            this.captcha = captcha;
        }
        public CaptchaToken(String userName, char[] password, boolean rememberMe, String captcha) {
            super();
            this.userName = userName;
            this.password = password;
            this.rememberMe = rememberMe;
            this.captcha = captcha;
        }
    }

    UserRealm

    package com.quartzDemo.common.shiro;
    
    import org.apache.shiro.authc.AuthenticationException;
    import org.apache.shiro.authc.AuthenticationInfo;
    import org.apache.shiro.authc.AuthenticationToken;
    import org.apache.shiro.authz.AuthorizationInfo;
    import org.apache.shiro.realm.AuthorizingRealm;
    import org.apache.shiro.subject.PrincipalCollection;
    
    public class UserRealm extends AuthorizingRealm {
    
        @Override
        protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
            // TODO Auto-generated method stub
            return null;
        }
        
    }
  • 相关阅读:
    如何打日志才能方便排查问题?
    为什么 HashMap 并发时会引起死循环?
    Spring 为什么会有 FactoryBean?
    常用 Git 使用技巧,收藏了~
    Gin中context的使用
    Gin的路由算法
    k8s中的网络通信总结
    k8s架构
    Golang中的值拷贝与引用拷贝
    golang知识要点总结
  • 原文地址:https://www.cnblogs.com/temporary/p/9129157.html
Copyright © 2020-2023  润新知