Swagger codegen DelegatePattern для Spring Boot с HttpServletRequest в параметрах метода - PullRequest
0 голосов
/ 05 июня 2018

В настоящее время у меня есть проект, который использует 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);
    }

}

Возможно ли это сделать?

Приветствия

1 Ответ

0 голосов
/ 22 ноября 2018

Нет, но вы можете внедрить HttpServletRequest в ваш контроллер делегата / класса следующим образом:

public class FooApiController implements FooApi {
  private final HttpServletRequest httpServletRequest;

  @Autowired
  public FooApiController(HttpServletRequest httpServletRequest) {
    this.httpServletRequest = httpServletRequest;
  }

  @Override
  public ResponseEntity<String> fooAction() {
    // code here
  }
}

Spring знает о природе HttpServletRequest, и автоматически его область всегда устанавливается на запрос, и он неСинглтон.Таким образом, у вас всегда будет под рукой текущий запрос.

...