美文网首页
Solon 的 PathVariable 不需注解

Solon 的 PathVariable 不需注解

作者: 草编椅 | 来源:发表于2020-08-11 22:46 被阅读0次

    相对于 Spring boot 的 path variable ;Solon 的不需注解,只要变量名对上即可:

    //path var demo
    //
    @XMapping("e/{p_q}/{obj}/{id}")
    public String test_e(XContext ctx, String p_q, String obj, String id) {
        return ctx.path() + "::" + p_q + "-" + obj + "-" + id;
    }
    

    注:maven-compiler-plugin 添加编译参数:-parameters ,例:

    <!-- 框架引用 -->
    <dependency>
        <groupId>org.noear</groupId>
        <artifactId>solon-web</artifactId>
        <version>1.0.10</version>
        <type>pom</type>
    </dependency>
    
    <!-- 编译插件配置 -->
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <compilerArgument>-parameters</compilerArgument>
            <source>1.8</source>
            <target>1.8</target>
            <encoding>UTF-8</encoding>
        </configuration>
    </plugin>  
    

    相关文章

      网友评论

          本文标题:Solon 的 PathVariable 不需注解

          本文链接:https://www.haomeiwen.com/subject/aueudktx.html