为了账号安全,请及时绑定邮箱和手机立即绑定
  • @Transactional 此注解控制事物
    查看全部
    0 采集 收起 来源:事务管理

    2018-02-14

  • mvn spring-boot:run
    查看全部
  • 启动方式:进入文件目录执行 java -jar 项目打包后的文件名
    查看全部
  • Jpa (Java Persistence Api)定义了一系列对象持久化的标准 @Entity @Table(name="auth_user") public class User extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Column(name = "name") private String name; @Column(name="pwd") private String pwd; public String getName() { return name; } spring: profiles: active: prod datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://127.0.0.1:12345/mygirldb username: root password: 123321 jpa: hibernate: ddl-auto: create show-sql: true
    查看全部
  • @RequestMapping(value={"/girl/template","hello"},method = RequestMethod.GET) 访问两个地址都可以访问这个页面 @PathVariable 获取u rl中的数据 @RequestParam 获取请求参数的值 @GetMapping 组合注解 专门用于get请求,同理还有PostMapping @RequestMapping(value = "/boy/{id}",method = RequestMethod.GET) public String hiboy(@PathVariable("id") Integer id) { return "id"+id; } //http://127.0.0.1:8002/boy/23 @RequestMapping(value = "/boy",method = RequestMethod.GET) public String hiboy(@RequestParam("id") Integer myid) { return "id"+myid; } http://127.0.0.1:8002/boy?id=23 //可以传递多个参数 @RequestMapping(value = "/boy",method = RequestMethod.GET) public String hiboy(@RequestParam(value = "id",required = false,defaultValue = "100") Integer myid) { return "id"+myid; } //有默认值的请求 @GetMapping("/man") public String hiboy(@RequestParam(value = "id",required = false,defaultValue = "100") Integer myid) { return "id"+myid; } //GetMapping直接指定了RequestMethod
    查看全部
    0 采集 收起 来源:Controller的使用

    2018-03-22

  • package com.quanxian.quanxian.controller; import com.quanxian.quanxian.dao.UserDAO; import com.quanxian.quanxian.entity.GirlRepository; import com.quanxian.quanxian.entity.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.jws.soap.SOAPBinding; @RestController---用于标注Controller,并用Restful风格返回 public class HelloWorldController { @Autowired private GirlRepository girlRepository; @RequestMapping("/girl") public String hiGirl() { return girlRepository.getCupSize(); } }
    查看全部
    1 采集 收起 来源:项目属性配置

    2018-03-22

  • GirlRepository实体类 package com.quanxian.quanxian.entity; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component--标注用于识别实体类 @ConfigurationProperties(prefix = "girl")--用于识别yml文件中的配置信息 public class GirlRepository { private String cupSize; private int age; public String getCupSize() { return cupSize; } public void setCupSize(String cupSize) { this.cupSize = cupSize; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-03-22

  • application.yml的配置 spring: profiles: active: prod application-dev.yml的配置 girl: cupSize: A age: 18 server: port: 8001 application-prod.yml的配置 girl: cupSize: A age: 18 server: port: 8001
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-13

  • 生产环境和非生产环境的配置区分开
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • yml文件中的配置 girl: capsize:B age:18 @component这样才能让这个bean可以注入
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • 通过注解把yml文件中的默认值带入 yml中只需要配置 Cup size: A
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • 用yml文件配置项目的端口号以及前缀 名称和值之间要有空格
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • 项目配置端口号以及url前缀
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • 数据库的属性配置
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

  • springboot属性配置
    查看全部
    0 采集 收起 来源:项目属性配置

    2018-02-12

举报

0/150
提交
取消
课程须知
学习本门课程之前,您需要了解一些前置知识: 1、如何利用maven构建项目 2、Spring注解相关知识 3、MVC的思想的基本概念 4、RestfulApi相关知识
老师告诉你能学到什么?
1、创建第一个Spring Boot应用 2、Spirng Boot中自定义属性配置 3、Spring Boot中Controller的使用 4、Spirng Boot中使用spirng-data-jpa和事务操作

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!