В настоящее время у меня есть проект, который использует swagger-codegen-maven-plugin
для генерации контроллеров сваггера с delegatePattern
.
pom.xml
:
[...]
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>generate-api-v1</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/resources/specs/v1.yaml</inputSpec>
<language>spring</language>
<apiPackage>test.foo.bar.v1</apiPackage>
<modelPackage>test.foo.bar.v1.v1.model</modelPackage>
<generateSupportingFiles>false</generateSupportingFiles>
<configOptions>
<java8>true</java8>
<dateLibrary>java8</dateLibrary>
<delegatePattern>true</delegatePattern>
<useOptional>true</useOptional>
<useBeanValidation>true</useBeanValidation>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
[...]
В настоящее время он генерирует интерфейсы контроллеракак это:
public interface FooApi {
FooDelegate getDelegate();
@ApiOperation(value = "", nickname = "fooAction", notes = "", response = String.class)
@ApiResponses(value = {
@ApiResponse(code = 200, message = "Success", response = String.class)
})
@RequestMapping(value = "/fooAction",
produces = { "text/plain" },
method = RequestMethod.GET)
default ResponseEntity<String> fooAction() {
return getDelegate().fooAction();
}
}
Но мне нравится, что контроллер генерируется с HttpServletRequest
в качестве таких параметров:
public interface FooApi {
FooDelegate getDelegate();
@ApiOperation(value = "", nickname = "fooAction", notes = "", response = String.class)
@ApiResponses(value = {
@ApiResponse(code = 200, message = "Success", response = String.class)
})
@RequestMapping(value = "/fooAction",
produces = { "text/plain" },
method = RequestMethod.GET)
default ResponseEntity<String> fooAction(HttpServletRequest request) {
return getDelegate().fooAction(request);
}
}
Возможно ли это сделать?
Приветствия