-
Notifications
You must be signed in to change notification settings - Fork 26.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set specific serializer for native hessian and hessian rpc protocol (#…
- Loading branch information
Showing
13 changed files
with
253 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 0 additions & 88 deletions
88
...tive-hession/src/main/java/org/apache/dubbo/serialize/hessian/Java8SerializerFactory.java
This file was deleted.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
...ain/java/org/apache/dubbo/serialize/hessian/dubbo/AbstractHessian2FactoryInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.serialize.hessian.dubbo; | ||
|
||
import com.caucho.hessian.io.SerializerFactory; | ||
|
||
public abstract class AbstractHessian2FactoryInitializer implements Hessian2FactoryInitializer { | ||
private static SerializerFactory SERIALIZER_FACTORY; | ||
|
||
@Override | ||
public SerializerFactory getSerializerFactory() { | ||
if (SERIALIZER_FACTORY != null) { | ||
return SERIALIZER_FACTORY; | ||
} | ||
synchronized (this) { | ||
SERIALIZER_FACTORY = createSerializerFactory(); | ||
} | ||
return SERIALIZER_FACTORY; | ||
} | ||
|
||
protected abstract SerializerFactory createSerializerFactory(); | ||
} |
28 changes: 28 additions & 0 deletions
28
...main/java/org/apache/dubbo/serialize/hessian/dubbo/DefaultHessian2FactoryInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.serialize.hessian.dubbo; | ||
|
||
import org.apache.dubbo.serialize.hessian.Hessian2SerializerFactory; | ||
|
||
import com.caucho.hessian.io.SerializerFactory; | ||
|
||
public class DefaultHessian2FactoryInitializer extends AbstractHessian2FactoryInitializer { | ||
@Override | ||
protected SerializerFactory createSerializerFactory() { | ||
return new Hessian2SerializerFactory(); | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...on/src/main/java/org/apache/dubbo/serialize/hessian/dubbo/Hessian2FactoryInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.dubbo.serialize.hessian.dubbo; | ||
|
||
import org.apache.dubbo.common.config.ConfigurationUtils; | ||
import org.apache.dubbo.common.extension.ExtensionLoader; | ||
import org.apache.dubbo.common.extension.SPI; | ||
import org.apache.dubbo.common.utils.StringUtils; | ||
|
||
import com.caucho.hessian.io.SerializerFactory; | ||
|
||
@SPI("default") | ||
public interface Hessian2FactoryInitializer { | ||
String WHITELIST = "dubbo.application.hessian2.whitelist"; | ||
String ALLOW = "dubbo.application.hessian2.allow"; | ||
String DENY = "dubbo.application.hessian2.deny"; | ||
ExtensionLoader<Hessian2FactoryInitializer> loader = ExtensionLoader.getExtensionLoader(Hessian2FactoryInitializer.class); | ||
|
||
SerializerFactory getSerializerFactory(); | ||
|
||
static Hessian2FactoryInitializer getInstance() { | ||
String whitelist = ConfigurationUtils.getProperty(WHITELIST); | ||
if (StringUtils.isNotEmpty(whitelist)) { | ||
return loader.getExtension("whitelist"); | ||
} | ||
return loader.getDefaultExtension(); | ||
} | ||
|
||
} |
Oops, something went wrong.