欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sprinboot使用控制器访问前端

程序员文章站 2022-03-11 09:00:58
...
  1. 新建一个TestConroller类
    sprinboot使用控制器访问前端
  2. 在类名前首先添加注解 @Controller
  3. 然后新建方法index,返回类型为String
  4. 在方法index前添加注解@RequestMapping(value = “/test”)
  5. 目的是为了在浏览器中访问类似于127.0.0.1:8080/test路径自动访问到index方法
  6. 然后return “test”; 会自动响应template下的模板页面test.html
    sprinboot使用控制器访问前端
  7. 项目启动后在浏览器中访问:http://127.0.0.1:9090/test 结果如下
    sprinboot使用控制器访问前端

项目的静态文件都默认保存在static下
sprinboot使用控制器访问前端
在模板页面中通过一下方法来调用静态资源
sprinboot使用控制器访问前端

<script th:src="@{/js/echarts/echarts.js}"></script>
    <script th:src="@{/plugins/jQuery/jquery-3.1.1.min.js}"></script>
    <script th:src="@{/plugins/mdl/material.min.js}"></script>
    <script th:src="@{/plugins/mdc/mdc.min.js}"></script>
    <!-- Datepicker -->
    <script th:src="@{/plugins/datepicker/bootstrap-datepicker.js}"></script>
    <!-- Select2 -->
    <script th:src="@{/plugins/select2/select2.full.min.js}"></script>
    <!-- Toastr -->
    <script th:src="@{/plugins/toastr/toastr.js}"></script>
    <script th:inline="javascript">