Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
idea如何搭建spring boot_搭建框架,希望能够帮助你!!!。
🍅程序员小王的博客:程序员小王的博客
🍅 欢迎点赞 👍 收藏 ⭐留言 📝
🍅 如有编辑错误联系作者,如果有比较好的文章欢迎分享给我,我会取其精华去其糟粕
🍅java自学的学习路线:java自学的学习路线
约定大于配置 ; 帮我们自动配置了我们需要配置的内容; 并且帮我们自动下载了需要下载的jar包以及运行环境;
优点: 方便,作为初学者来说直接使用就可以了;
缺点: 出现问题,我们作为初学者很难去定位解决;
<groupId>com.tjcu</groupId> <artifactId>handwork_SpringBoot</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <!--1.继承springboot父项目--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE</version> </parent> <dependencies> <!--spring-boot-stater-web--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--引入springboot-stater-test--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <!--scope test 仅仅在测试时有效 运行 打包 不生效--> <scope>test</scope> </dependency> </dependencies>
项目中src/main/resources/application.yml
@SpringBootApplication public class Application {
public static void main(String[] args) {
/** * 入口类函数 */ SpringApplication.run(Application.class,args); } }
@RequestMapping("/user") public class HandworkDemo {
/** *@ResponseBody:将控制器返回值转化为json格式字符串 并响应浏览器 * @return */ @RequestMapping("create") @ResponseBody public String createName(){
String name="王恒杰实现手工创建SpringBoot项目结构搭建!"; return name; } }
start.aliyun.com
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
下一篇
已是最新文章