Я пытаюсь создать 2 функции Azure с помощью Spring Cloud, но не могу заставить его работать.
@Configuration
public class FirstFunction extends AzureSpringBootRequestHandler<Optional<Void>, String>
{
@FunctionName("firstFunction")
public void run(
@HttpTrigger(name = "req", methods = {HttpMethod.POST}, authLevel = AuthorizationLevel.FUNCTION) HttpRequestMessage<Optional<String>> request,
final ExecutionContext context)
{
handleRequest(Optional.empty(), context);
}
@Bean
@Lazy
Function<Optional<Void>, String> firstFunction()
{
return context ->
{
// do firstFunction stuff;
};
}
}
@Configuration
public class SecondFunction extends AzureSpringBootRequestHandler<Optional<Void>, String>
{
@FunctionName("secondFunction")
public void run(
@HttpTrigger(name = "req", methods = {HttpMethod.POST}, authLevel = AuthorizationLevel.FUNCTION) HttpRequestMessage<Optional<String>> request,
final ExecutionContext context)
{
handleRequest(Optional.empty(), context);
}
@Bean
@Lazy
Function<Optional<Void>, String> secondFunction()
{
return context ->
{
// do secondFunction stuff;
};
}
}
@SpringBootApplication
public class Application
{
public static void main(final String[] args)
{
SpringApplication.run(Application.class, args);
}
}
Используя приведенный выше код с зависимостью от spring-cloud-function-dependencies 2.0.1.RELEASE
, он всегда достигает значения firstFunction Bean
при вызове конечных точек firstFunction
и secondFunction
.
После некоторого поиска в Google я нашел SO ответ , предлагающий перейти на 2.1
.
Однако, когда я попытался изменить на 2.1.1.RELEASE
, я получаю исключение, когда ему не удается найти основной класс:
System.Private.CoreLib: Exception while executing function: Functions.extractContent. System.Private.CoreLib: Result: Failure
Exception: IllegalArgumentException: Failed to locate main class
Stack: java.lang.IllegalStateException: Failed to discover main class. An attempt was made to discover main class as 'MAIN_CLASS' environment variable, system property as well as entry
in META-INF/MANIFEST.MF (in that order).
Нужна помощь в том, что я делаю неправильно.