Solon v3.0.6

开发单体 Web 项目指南

</> markdown

开发单体 Web,我们可以在 solon-web 的基础上,按需增加插件:

<parent>
    <groupId>org.noear</groupId>
    <artifactId>solon-parent</artifactId>
    <version>3.0.6</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.noear</groupId>
        <artifactId>solon-web</artifactId>
    </dependency>
    
    <!-- 按需增加后端模板(如果前后分离,则不用加) -->
    <dependency>
        <groupId>org.noear</groupId>
        <artifactId>solon-view-beetl</artifactId>
    </dependency>
    
    <!-- 添加 sql 查询工具(或者,添加其它 orm 插件) -->
    <dependency>
        <groupId>org.noear</groupId>
        <artifactId>solon-data-sqlutils</artifactId>
    </dependency>
    
    <!-- 添加 http 查询工具(或者,添加其它 http 工具) -->
    <dependency>
        <groupId>org.noear</groupId>
        <artifactId>solon-net-httputils</artifactId>
    </dependency>
</dependencies>

简单的示例:

@Controller
public class App {
    public static void main(String[] args) {
        Solon.start(App.class, args);
    }

    @Mapping("/")
    public String hello() {
        return "hello world!";
    }
}

开发指南: