Spring Boot是否有一种方法可以自动创建String的映射,Methods

时间:2018-08-30 15:04:32

标签: java maven spring-boot methods hashmap

我有以下示例

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="myTable">
  <thead>
    <tr>
      <th>Name</th>
      <th>Age</th>
      <th>Favorite Food</th>
      <th>Favorite Beer</th>
    </tr>
  </thead>
  <tbody>
    <tr class='tableRow'>
      <td>John</td>
      <td>30</td>
      <td><label><input type="radio" name="favoriteFood1"/>Pizza</label><label><input type="radio" name="favoriteFood1" />Tacos</label>
        <td><input type="text" class="favoriteBeer"></td>
    </tr>
    <tr class='tableRow'>
      <td>Joe</td>
      <td>25</td>
      <td><label><input type="radio" name="favoriteFood2"/>Pizza</label><label><input type="radio" name="favoriteFood2" />Tacos</label>
        <td><input type="text" class="favoriteBeer"></td>
    </tr>
    <tr class='tableRow'>
      <td>Sam</td>
      <td>50</td>
      <td><label><input type="radio" name="favoriteFood3"/>Pizza</label><label><input type="radio" name="favoriteFood3" />Tacos</label>
        <td><input type="text" class="favoriteBeer"></td>
    </tr>
  </tbody>
</table>

Spring是否有一种方法可以获取所有这些方法并将其添加到methodsMap,而无需我编写使用Resource.name作为键并将方法本身作为值的实现?

使用String的Map和接口时,我得到了类似的结果,其中值是实现该接口的所有类,我可以做出类似的事情,但使用类中的所有方法吗?

我已经完成并开始工作的是我循环浏览所有方法并手动添加,但是我希望Spring Boot可以帮我解决这个问题

0 个答案:

没有答案