CAS解決ワンポイントログインSSO

25288 ワード

CASの多くの原理と基础の配置の起动について、ネット上では多くて、私はもっと私の実践と心得を结びつけます.CASの原理、認証プロトコル、認証プロセスについては、以下の記事を参照してください.
CASにクライアントカスタムログインページをサポートさせる——クライアント編
CAS原理と配置−CASに基づく単点上陸の研究(上)
サービス側構成
CASワンポイントログイン配備
CAS構成マニュアル
CASワンポイントログイン構成
背景
単点登録(SSO)は企業開発の重要な問題であり、私の完成プロジェクトでは、システムの他の開発モジュールとユーザー認証モジュールを共用し、ユーザー資源を共有しやすいため、良いSSOソリューションが必要である.
一般的なSSOの実現メカニズムには,セッションベースとクッキーベースの2つがある.WebLogicはセッションを通じて認証情報を共有する.Sessionは1種のサーバー側のメカニズムで、クライアントがサーバーにアクセスする時、サーバーはクライアントのために1つの唯一のSessionIDを作成して、全体のインタラクションの過程の中で終始状態を維持することができて、インタラクションの情報はアプリケーションが自分で指定することができて、そのためSession方式でSSOを実現して、複数のブラウザの間で単一のログインを実現することができなくて、しかしドメインをまたぐことができます;WebSphereはCookieを通じて認証情報を記録する.Cookieはクライアントメカニズムであり、その格納内容は主に名前、値、期限切れ時間、経路とドメインを含み、経路とドメインが合わさってCookieの役割範囲を構成するため、Cookie方式でSSOを実現することができるが、ドメイン名は同じでなければならない.この両者に対応して,オープンソースのSSO実装はそれぞれOAuthとCASである.
OAuthはサードパーティがサービスプロバイダにアクセスするユーザーのリソースを解決することが多く、大きなプラットフォームがOAuthの認証メカニズム(新浪微博、google)を提供するなど、異なるシステムに適していると思います.CASは更に私の需要に寄り添って、同じシステムの下で異なるサービス間のユーザー認証の仕事を解決して、シームレスに接続することができます.
CASについて
CASはYale大学のオープンソースプロジェクトであり、エンタープライズクラスのワンポイントログインソリューションです.は、Tomcatに配備された独立したWebアプリケーションです.CAS-Serverは、クライアントである各サービス開発者がCAS-Clientパッケージを使用する必要がある個別に導入された認証サーバです.認証のセキュリティのために、CAS-serverはTomcatがSSLのhttpポートを開き、証明書を生成、インポート、エクスポートする必要があります(一般的にはjreのkeytoolで生成できます).実はcasのhttpsをキャンセルすることもできます.CASはSpringフレームワークに基づいて開発されたもので、ダウンロードしたwarパッケージはtomcatのwebappに入れて使えます.
往々にしてこのようなオープンソースツールの特徴は、構成が複雑で、あるいは基礎構成が簡単で、段階的な構成は面倒で、ソースコードを見に行くかもしれませんが、多くの細かいものを研究しなければなりません.これはsolrと同じです.明らかに彼の長所はカスタマイズと拡張です.
私のCASの配置と実践
私が使っているのはcas-server-3.4.10とcas-client-3.2.1です.まずcas-server-3.4.10のいくつかの構成について話します.deployerConfigContext.xmlでは、一般的に追加する必要があるのは、独自の認証方法を使用することです.より多くのユーザー情報を取得してセッションに入れてクライアントに取得させます.私はdeployerConfigContext.にxmlの変更はjdbcを使用してmysql認証を接続し、username以外のemailなどの情報を返すことです.
<?xml version="1.0" encoding="UTF-8"?>
<!--
	| deployerConfigContext.xml centralizes into one file some of the declarative configuration that
	| all CAS deployers will need to modify.
	|
	| This file declares some of the Spring-managed JavaBeans that make up a CAS deployment.  
	| The beans declared in this file are instantiated at context initialization time by the Spring 
	| ContextLoaderListener declared in web.xml.  It finds this file because this
	| file is among those declared in the context parameter "contextConfigLocation".
	|
	| By far the most common change you will need to make in this file is to change the last bean
	| declaration to replace the default SimpleTestUsernamePasswordAuthenticationHandler with
	| one implementing your approach for authenticating usernames and passwords.
	+-->
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:sec="http://www.springframework.org/schema/security"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">
	<!--
		| This bean declares our AuthenticationManager.  The CentralAuthenticationService service bean
		| declared in applicationContext.xml picks up this AuthenticationManager by reference to its id, 
		| "authenticationManager".  Most deployers will be able to use the default AuthenticationManager
		| implementation and so do not need to change the class of this bean.  We include the whole
		| AuthenticationManager here in the userConfigContext.xml so that you can see the things you will
		| need to change in context.
		+-->
	<bean id="authenticationManager"
		class="org.jasig.cas.authentication.AuthenticationManagerImpl">
		<!--
			| This is the List of CredentialToPrincipalResolvers that identify what Principal is trying to authenticate.
			| The AuthenticationManagerImpl considers them in order, finding a CredentialToPrincipalResolver which 
			| supports the presented credentials.
			|
			| AuthenticationManagerImpl uses these resolvers for two purposes.  First, it uses them to identify the Principal
			| attempting to authenticate to CAS /login .  In the default configuration, it is the DefaultCredentialsToPrincipalResolver
			| that fills this role.  If you are using some other kind of credentials than UsernamePasswordCredentials, you will need to replace
			| DefaultCredentialsToPrincipalResolver with a CredentialsToPrincipalResolver that supports the credentials you are
			| using.
			|
			| Second, AuthenticationManagerImpl uses these resolvers to identify a service requesting a proxy granting ticket. 
			| In the default configuration, it is the HttpBasedServiceCredentialsToPrincipalResolver that serves this purpose. 
			| You will need to change this list if you are identifying services by something more or other than their callback URL.
			+-->
		<property name="credentialsToPrincipalResolvers">
			<list>
				<!--
					| UsernamePasswordCredentialsToPrincipalResolver supports the UsernamePasswordCredentials that we use for /login 
					| by default and produces SimplePrincipal instances conveying the username from the credentials.
					| 
					| If you've changed your LoginFormAction to use credentials other than UsernamePasswordCredentials then you will also
					| need to change this bean declaration (or add additional declarations) to declare a CredentialsToPrincipalResolver that supports the
					| Credentials you are using.
					+-->
				<bean
					class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver" >
					<property name="attributeRepository" ref="attributeRepository" />
				</bean>
				<!--
					| HttpBasedServiceCredentialsToPrincipalResolver supports HttpBasedCredentials.  It supports the CAS 2.0 approach of
					| authenticating services by SSL callback, extracting the callback URL from the Credentials and representing it as a
					| SimpleService identified by that callback URL.
					|
					| If you are representing services by something more or other than an HTTPS URL whereat they are able to
					| receive a proxy callback, you will need to change this bean declaration (or add additional declarations).
					+-->
				<bean
					class="org.jasig.cas.authentication.principal.HttpBasedServiceCredentialsToPrincipalResolver" />
			</list>
		</property>

		<!--
			| Whereas CredentialsToPrincipalResolvers identify who it is some Credentials might authenticate, 
			| AuthenticationHandlers actually authenticate credentials.  Here we declare the AuthenticationHandlers that
			| authenticate the Principals that the CredentialsToPrincipalResolvers identified.  CAS will try these handlers in turn
			| until it finds one that both supports the Credentials presented and succeeds in authenticating.
			+-->
		<property name="authenticationHandlers">
			<list>
				<!--
					| This is the authentication handler that authenticates services by means of callback via SSL, thereby validating
					| a server side SSL certificate.
					+-->
				<bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
					p:httpClient-ref="httpClient" p:requireSecure="false" />
				<!--
					| This is the authentication handler declaration that every CAS deployer will need to change before deploying CAS 
					| into production.  The default SimpleTestUsernamePasswordAuthenticationHandler authenticates UsernamePasswordCredentials
					| where the username equals the password.  You will need to replace this with an AuthenticationHandler that implements your
					| local authentication strategy.  You might accomplish this by coding a new such handler and declaring
					| edu.someschool.its.cas.MySpecialHandler here, or you might use one of the handlers provided in the adaptors modules.
					+-->
				<!--
				<bean
					class="org.jasig.cas.authentication.handler.support.SimpleTestUsernamePasswordAuthenticationHandler" />
				-->
				
				<bean class="org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler">
    				<property name="dataSource" ref="dataSource"></property>
    				<property name="sql" value="select password from academic_user where username=?"></property>
    				<!--
    				<property name="passwordEncoder" ref="MD5PasswordEncoder"></property>
    				-->
				</bean>
			
			</list>
		</property>
	</bean>

	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
   		<property name="driverClassName"><value>com.mysql.jdbc.Driver</value></property>
   		<property name="url"><value>jdbc:mysql://localhost:3307/academic</value></property>
   		<property name="username"><value>root</value></property>
   		<property name="password"><value></value></property>
	</bean>
 <!--
	<bean id="MD5PasswordEncoder" class="org.jasig.cas.authentication.handler.DefaultPasswordEncoder">
    	<constructor-arg index="0">
        	<value>MD5</value>
    	</constructor-arg>
	</bean>
-->


	<!--
	This bean defines the security roles for the Services Management application.  Simple deployments can use the in-memory version.
	More robust deployments will want to use another option, such as the Jdbc version.
	
	The name of this should remain "userDetailsService" in order for Spring Security to find it.
	 -->
    <!-- <sec:user name="@@THIS SHOULD BE REPLACED@@" password="notused" authorities="ROLE_ADMIN" />-->

    <sec:user-service id="userDetailsService">
        <sec:user name="@@THIS SHOULD BE REPLACED@@" password="notused" authorities="ROLE_ADMIN" />
    </sec:user-service>
	
	<!-- 
	Bean that defines the attributes that a service may return.  This example uses the Stub/Mock version.  A real implementation
	may go against a database or LDAP server.  The id should remain "attributeRepository" though.
	 -->
	<bean id="attributeRepository"
		class="org.jasig.services.persondir.support.jdbc.SingleRowJdbcPersonAttributeDao">
		<constructor-arg index="0" ref="dataSource"/>
		<constructor-arg index="1" value="select * from academic_user where {0}"/>
		<property name="queryAttributeMapping">
			<map>
				<entry key="username" value="username" />
			</map>
		</property>
		<property name="resultAttributeMapping">
			<map>
				<entry key="username" value="username"/>
				<entry key="name" value="name"/>
				<entry key="email" value="email"/>
			</map>
		</property>
	</bean>
	
	<!-- 
	Sample, in-memory data store for the ServiceRegistry. A real implementation
	would probably want to replace this with the JPA-backed ServiceRegistry DAO
	The name of this bean should remain "serviceRegistryDao".
	 -->
	<bean
		id="serviceRegistryDao"
        class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl">
        <!--
            <property name="registeredServices">
                <list>
                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="0" />
                        <property name="name" value="HTTP" />
                        <property name="description" value="Only Allows HTTP Urls" />
                        <property name="serviceId" value="http://**" />
                    </bean>

                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="1" />
                        <property name="name" value="HTTPS" />
                        <property name="description" value="Only Allows HTTPS Urls" />
                        <property name="serviceId" value="https://**" />
                    </bean>

                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="2" />
                        <property name="name" value="IMAPS" />
                        <property name="description" value="Only Allows HTTPS Urls" />
                        <property name="serviceId" value="imaps://**" />
                    </bean>

                    <bean class="org.jasig.cas.services.RegisteredServiceImpl">
                        <property name="id" value="3" />
                        <property name="name" value="IMAP" />
                        <property name="description" value="Only Allows IMAP Urls" />
                        <property name="serviceId" value="imap://**" />
                    </bean>
                </list>
            </property>
            -->
        </bean>

    <bean id="auditTrailManager" class="com.github.inspektr.audit.support.Slf4jLoggingAuditTrailManager" />
</beans>

上の私が注釈した場所と追加した場所に注意して、私は一つ一つ指摘しないで、何か問題があったらプライベートで私に聞いてもいいです.
クライアントがcasを使用する場合、cas-clientのパッケージをweb project/WEB-INF/libにインポートし、必要なパッケージはmavenで特定のパッケージをパッケージ化する必要があります.最も重要なのはwebです.xmlファイルにはfilterの設定があります.これらの設定にはcasのloginとlogoutという最も基礎的な機能が含まれており、もう一つ重要なのはcasのvalidationです.validationが成功すれば、casはsessionでユーザー名を返しますが、私は上のxmlに他のユーザー情報を追加しました.これらのものはvalidationが成功した後にsessionに書き込まれ、xmlの形で置いてあります.私たちは自分で書いたAutoSetUserAdapterFilterで得ることができます.次はwebです.xmlの構成、
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	id="WebApp_ID" version="2.5">
	<display-name>AcademicSearchEngine</display-name>
	<welcome-file-list>
		<welcome-file>home.jsp</welcome-file>
	</welcome-file-list>

	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
	</filter>

	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<!--       ,              ,     -->
	<listener>
		<listener-class>org.jasig.cas.client.session.SingleSignOutHttpSessionListener</listener-class>
	</listener>

	<!--               ,    。 -->
	<filter>
		<filter-name>CAS Single Sign Out Filter</filter-name>
		<filter-class>org.jasig.cas.client.session.SingleSignOutFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>CAS Single Sign Out Filter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>

	<!--              ,      -->
	<filter>
		<filter-name>CAS Authentication Filter</filter-name>
		<filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class>
		<init-param>
			<param-name>casServerLoginUrl</param-name>
			<param-value>http://dcd.academic:8443/cas/login</param-value>
		</init-param>
		<init-param>
			<!--   server     IP -->
			<param-name>serverName</param-name>
			<param-value>http://dcd.academic:8080</param-value>
		</init-param>
		<init-param>
			<param-name>renew</param-name>
			<param-value>false</param-value>
		</init-param>
		<init-param>
			<param-name>gateway</param-name>
			<param-value>false</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>CAS Authentication Filter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>


	<filter>
		<filter-name>CAS Validation Filter</filter-name>
		<filter-class>
			org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter
		</filter-class>
		<init-param>
			<param-name>casServerUrlPrefix</param-name>
			<param-value>http://dcd.academic:8443/cas</param-value>
		</init-param>
		<init-param>
			<param-name>serverName</param-name>
			<param-value>http://dcd.academic:8080</param-value>
		</init-param>
		<init-param>
			<param-name>useSession</param-name>
			<param-value>true</param-value>
		</init-param>
		<init-param>
			<param-name>redirectAfterValidation</param-name>
			<param-value>true</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>CAS Validation Filter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>

	<!--         HttpServletRequest     ,          HttpServletRequest   getRemoteUser()    SSO        ,    。 -->
	<filter>
		<filter-name>CAS HttpServletRequest Wrapper Filter</filter-name>
		<filter-class>
			org.jasig.cas.client.util.HttpServletRequestWrapperFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>CAS HttpServletRequest Wrapper Filter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>

	<!--              org.jasig.cas.client.util.AssertionHolder         。   AssertionHolder.getAssertion().getPrincipal().getName()。 -->
	<filter>
		<filter-name>CAS Assertion Thread Local Filter</filter-name>
		<filter-class>org.jasig.cas.client.util.AssertionThreadLocalFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>CAS Assertion Thread Local Filter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>

	<!--                       -->
	<filter>
		<display-name>AutoSetUserAdapterFilter</display-name>
		<filter-name>AutoSetUserAdapterFilter</filter-name>
		<filter-class>dcd.academic.cas.AutoSetUserAdapterFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>AutoSetUserAdapterFilter</filter-name>
		<url-pattern>/share.jsp</url-pattern>
	</filter-mapping>
</web-app>
はどれも重要で、私はhttpsをオフにしたので、serverNameにhttpを書けばいいです.自分で書いたAutoSetUserAdapterFilterは、セッション内のユーザー情報のコードを取得します.
package dcd.academic.cas;

import java.io.IOException;
import java.util.Map;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;

import org.jasig.cas.client.util.AssertionHolder;
import org.jasig.cas.client.validation.Assertion;

import dcd.academic.DAO.DAOfactory;
import dcd.academic.DAO.UserDAO;
import dcd.academic.model.User;
import dcd.academic.util.StdOutUtil;

/**
 * CAS           ,              Session
 * 
 */
public class AutoSetUserAdapterFilter implements Filter {

	/**
	 * Default constructor.
	 */
	public AutoSetUserAdapterFilter() {
		StdOutUtil.out("[AutoSetUserAdapterFilter]");
	}
	

	/**
	 * @see Filter#destroy()
	 */
	public void destroy() {
	}

	public void doFilter(ServletRequest request, ServletResponse response,
			FilterChain chain) throws IOException, ServletException {
		HttpServletRequest httpRequest = (HttpServletRequest) request;
		
		// _const_cas_assertion_ CAS         session  
		Object object = httpRequest.getSession().getAttribute(
				"_const_cas_assertion_");
	
		if (object != null) {
			Assertion assertion = (Assertion) object;
			String loginName = assertion.getPrincipal().getName();
			StdOutUtil.out("[loginname]: " + loginName);
			
			Map<String, Object> map = assertion.getPrincipal().getAttributes();
			String email = (String) map.get("email");
			String name = (String) map.get("name");
			String username = (String) map.get("username");
			StdOutUtil.out("[email]: " + email);
			StdOutUtil.out("[name]: " + name);
			StdOutUtil.out("[username]: " + username);
		}
		chain.doFilter(request, response);
	}

	/**
	 * @see Filter#init(FilterConfig)
	 */
	public void init(FilterConfig fConfig) throws ServletException {
	}

}

もう一つ、validation successの戻りjspに、ディレクトリcasWEB-INFviewjspprotocol2.0のcasServiceValidationSuccess.jsp
<%@ page session="false" %><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'>
	<cas:authenticationSuccess>
		<cas:user>${fn:escapeXml(assertion.chainedAuthentications[fn:length(assertion.chainedAuthentications)-1].principal.id)}</cas:user>
		<c:if test="${not empty pgtIou}">
			<cas:proxyGrantingTicket>${pgtIou}</cas:proxyGrantingTicket>
		</c:if>
		<c:if test="${fn:length(assertion.chainedAuthentications) > 1}">
			<cas:proxies>
				<c:forEach var="proxy" items="${assertion.chainedAuthentications}" varStatus="loopStatus" begin="0" end="${fn:length(assertion.chainedAuthentications)-2}" step="1">
					<cas:proxy>${fn:escapeXml(proxy.principal.id)}</cas:proxy>
				</c:forEach>
			</cas:proxies>
		</c:if>

		<c:if test="${fn:length(assertion.chainedAuthentications[fn:length(assertion.chainedAuthentications)-1].principal.attributes) > 0}">
            <cas:attributes>
                <c:forEach var="attr" items="${assertion.chainedAuthentications[fn:length(assertion.chainedAuthentications)-1].principal.attributes}">
                    <cas:${fn:escapeXml(attr.key)}>${fn:escapeXml(attr.value)}</cas:${fn:escapeXml(attr.key)}>
                </c:forEach>
            </cas:attributes>
        </c:if>
	</cas:authenticationSuccess>
</cas:serviceResponse>

実は本質的にこれらはservletの処理です.casもservletで書かれたwarなので、簡単と言っても簡単です.だからcas自身のログインインタフェースは私たちが自分でカスタマイズしたものです.
私たちが使用するとき、変更する必要があるプロジェクトコードは少ないです.ログインまたは認証が必要な場所で、リンクをserver:8443/cas/loginにジャンプし、ログインに成功したらcasのログイン成功インタフェースを元のserviceのurlにジャンプさせ、casはserviceとservice ticketによって新しいticket grant ticketを生成し、sessionに物を保存してクライアントに読み取らせます.セキュリティの面では、このステップはSSLに基づいているので、server:8443/cas/serviceValidationのようなSSL証明書に直接アクセスするとエラーが発生します.
やはりcasのプロトコルメカニズムを少し話しましょう.この図も他の人の文章の中の図で、みんなが理解しやすいように、やはり投稿します.
•ST:Service Ticketクライアントアプリケーションに使用され、STごとに1人のユーザーが1つのクライアントに対応する
•TGT:Ticket Granting Ticket、CASサーバー側とユーザークッキーの2つの場所に格納
•CASサーバ保有
ST

TGT+
クライアントのマッピング関係、クライアントが持つ
ST
ユーザー
Session
のマッピング関係は、renewの場合、クライアントがユーザSessionに従ってSTをCASサーバ側に送信するたびに、サーバ側がSTが存在するかどうかを検査して、このユーザがログインしたかどうかを知ることができる.通常、ユーザが初めてアプリケーションにログインすると、クライアントはユーザページをCASサーバにリダイレクトし、サーバはユーザクッキー中のTGTを取り出し、サーバ中に存在するかどうかを検査し、存在すればSTを生成してクライアントに返す(存在しなければログインを要求し、ログイン成功後も同様にSTをクライアントに返す)、クライアントはSTを取得してからCASサーバに送信して認証が実際のSTであるかどうか、認証が成功するとログイン成功を示す
まとめ
casをまとめると、tomcatを単独でユーザー認証モジュールとして使用することができ、認証後、クライアントはsessionのユーザー情報を得ることができます.これでワンポイントログインの問題が解決したと考えられます.このcasサーバがどのように構成されているか、どのように認証されているか、何を伝える必要があるかについては、tomcat/webapps/casの多くのjspとxmlに行って構成します.ところでこれらのjspとxmlは本当に多いです.
このようなオープンソースエンタープライズソリューションは、簡単でも簡単でも、難しいと言ってもsolrと同じです.この構成は、段階的に使用するにはソースの読み取りに力を入れる必要があります.そうすれば、カスタマイズと拡張をうまく行うことができます.さもなくば私达は彼があなたに书いた简単な配置と复雑な配置がどのように実现したのかを知ることができなくて、私达はどれらの书いたhandlerを使うべきで、どんなparamsが必要です.