- 服务层代码
package com.itheima.controller;import com.itheima.domain.Book;import com.itheima.service.BookService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;import java.util.List;// 标记为Bean// 采用REST书写方式@RestController// 设置总体路径前缀@RequestMapping("/books")public class BookController { // 自动装配 @Autowired private BookService bookService; // 新添采用POST请求 // 数据位于请求体,采用@RequestBody @PostMapping public boolean save(@RequestBody Book book) { return bookService.save(book); } // 更新采用PUT请求 // 数据位于请求体,采用@RequestBody @PutMapping public boolean update(@RequestBody Book book) { return bookService.update(book); } // 删除采用DELETE请求 // 数据位于请求路径,采用@PathVariable,并在路径采用{}表示 @DeleteMapping("/{id}") public boolean delete(@PathVariable Integer id) { return bookService.delete(id); } // 访问采用GET请求 // 数据位于请求路径,采用@PathVariable,并在路径采用{}表示 @GetMapping("/{id}") public Book getById(@PathVariable Integer id) { return bookService.getById(id); } // 访问采用GET请求 @GetMapping public List<Book> getAll() { return bookService.getAll(); }}案例测试阶段
- Java内部代码测试
// 测试均实现于test文件夹下package com.itheima.service;import com.itheima.config.SpringConfig;import com.itheima.domain.Book;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.test.context.ContextConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import java.util.List;// 测试采用的junit@RunWith(SpringJUnit4ClassRunner.class)// 测试采用的配置文件@ContextConfiguration(classes = SpringConfig.class)public class BookServiceTest { // 自动装配 @Autowired private BookService bookService; // 查询id=1的值 @Test public void testGetById(){ Book book = bookService.getById(1); System.out.println(book); } // 查询所有数据 @Test public void testGetAll(){ List<Book> all = bookService.getAll(); System.out.println(all); }}
经验总结扩展阅读
-
李嘉琦的星座爱情|女孩们以后穿裙子一定要注意点坐姿呀,这也太尴尬了!哈哈哈哈
-
护肤 用完一套顶你去10次美容院 有效的护肤品套装推荐 价格实惠效果好
-
-
-
-
-
-
猫猫故事会|初次见面,婆婆让儿媳包饺子洗碗,一家人的态度,姑娘果断分手
-
-
-
-
发型|刘亦菲的狼尾短发太惊艳,倪妮的一刀切撩人,剪短发可不止看脸型
-
“媳妇,我住院了,取消AA制”“我要离婚了,不用取消了”
-
-
-
海南11月份的温度大概是多少 海南11月气温开始冷了吗有几度
-
情窦初开的青春|奥运冠军谌利军:从小家贫父亲患癌,母亲打三份工,可他从未倒下
-
-
-