| | |
| | | <artifactId>javacv-platform</artifactId> |
| | | <version>1.5.7</version> |
| | | </dependency> |
| | | <!-- Forest --> |
| | | <dependency> |
| | | <groupId>com.dtflys.forest</groupId> |
| | | <artifactId>forest-spring-boot-starter</artifactId> |
| | | <version>1.5.22</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | </project> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.utils.forest; |
| | | |
| | | import com.dtflys.forest.annotation.Get; |
| | | |
| | | /** |
| | | * @Description: |
| | | * @ClassName: client |
| | | * @Author: åèä¹ |
| | | * @Date: 2023å¹´07æ06æ¥9:51 |
| | | * @Version: 1.0 |
| | | **/ |
| | | public interface client { |
| | | @Get("http://www.baidu.com") |
| | | String getBaiDu(); |
| | | } |
| | |
| | | * @author ruoyi |
| | | */ |
| | | @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class },scanBasePackages = {"com.ruoyi"}) |
| | | @ForestScan("com.ruoyi.device.chatgpt.forest") |
| | | @ForestScan("com.ruoyi.utils.forest") |
| | | public class RuoYiApplication |
| | | { |
| | | public static void main(String[] args) |