All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jistol.remote.annotation.EnableRemoteServer Maven / Gradle / Ivy

Go to download

You can set up Spring RMI and HttpInvoker in only two steps. Step 1. Set @EnableRemoteType on application main. Step 2. Add @RemoteType on your service(or component, resource ...)

The newest version!
package io.github.jistol.remote.annotation;

import io.github.jistol.remote.configuration.RemoteServerConfiguration;
import org.springframework.context.annotation.Import;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created by kimjh on 2017-03-13.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
@Import(RemoteServerConfiguration.class)
public @interface EnableRemoteServer
{
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy