1

私は困惑している問題に遭遇しました。Spring と JUnit の最新バージョンを実行しています。私は、MockMvc と Spring の統合テスト クラスを試して、会社のニーズに合うかどうかを確認しました。URL にバージョン番号である @PathVariable が含まれているリクエストを送信しようとするまでは、うまく機能していました。

ポム;

<modelVersion>4.0.0</modelVersion>

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.3.RELEASE</version>
    </parent>
  <groupId>asd</groupId>
  <artifactId>asd</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>asd</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <spring.version>4.1.6.RELEASE</spring.version>
  </properties>

  <dependencies>
  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <scope>compile</scope>
        </dependency>
    <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit-dep</artifactId>
            <version>4.5</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
            <scope>test</scope>
        </dependency>

  </dependencies>

コントローラーの例。junit.framework.Assert をインポートします。

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ExampleController {

    @RequestMapping(value = "/example/appVersion/{applicationVersion}")
    public @ResponseBody void example(@PathVariable("applicationVersion") String applicationVersion) {

        if (!"1.0.0.0".equals(applicationVersion)) {
            Assert.fail("I needed to be 1.0.0.0");
        }

    }
}

テストクラス;

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.WebIntegrationTest;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.web.context.WebApplicationContext;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath*:appContext.xml")
@WebIntegrationTest
public class ExampleProblem {

    @Autowired
    WebApplicationContext context;

    @Test
    public void test() throws Exception {
        String url = "/example/appVersion/1.0.0.0";
        // String url = "/example/appVersion/{applicationVersion}";

        //@formatter:off
        MvcResult result =  webAppContextSetup(context)
        .build()
        .perform(
            get(url)
//                              get(url, "1.0.0.0")
            .accept("application/json")
        ).andDo(print())
        .andExpect(status().is(200))
        .andReturn();
        //@formatter:on

        Assert.assertNotNull(result);
    }
}

私の appContext.xml ファイルには、この行のみが含まれています (最初のビーンズ タグと終了タグを除く)。

<context:component-scan base-package="asd" />

サンプル コントローラーに送信されるリクエストを表示すると、デバッガーで /example/appVersion/1.0.0.0 と表示されますが、パス変数は常に "1.0.0" に設定されています。「1.0.0.0.0」を渡すと、期待される「1.0.0.0」にトリミングされるため、最後の.0が常に削除されているようです。

これを引き起こしている可能性のあるもの、または私が間違っていることについての洞察をいただければ幸いです。

ありがとうございました。

4

1 に答える 1

1

これは、Spring が最後のドット (.) とそれに続く文字をファイル拡張子として解釈するために発生します。

これを修正するには、コントローラーパラメーターの末尾に「:.+」を追加して、パラメーターがドット文字を想定していることを Spring に伝える必要があります。したがって、注釈は次のようになります。

@RequestMapping(value = "/example/appVersion/{applicationVersion:.+}")
于 2015-07-08T17:11:03.423 に答える