parent
fb82f27a43
commit
6bc3da3fa8
@ -1,9 +1,14 @@ |
|||||||
package com.gitee.sop.servercommon.configuration; |
package com.gitee.sop.servercommon.configuration; |
||||||
|
|
||||||
|
import com.gitee.sop.servercommon.bean.ServiceConfig; |
||||||
|
|
||||||
/** |
/** |
||||||
* 通用web |
* 通用web |
||||||
* @author tanghc |
* @author tanghc |
||||||
*/ |
*/ |
||||||
public class WebappServiceConfiguration extends BaseServiceConfiguration { |
public class WebappServiceConfiguration extends BaseServiceConfiguration { |
||||||
|
static { |
||||||
|
// 默认版本号为1.0
|
||||||
|
ServiceConfig.getInstance().setDefaultVersion("1.0"); |
||||||
|
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,94 @@ |
|||||||
|
package com.gitee.sop.storyweb.controller; |
||||||
|
|
||||||
|
import com.gitee.sop.servercommon.annotation.ApiMapping; |
||||||
|
import com.gitee.sop.servercommon.util.UploadUtil; |
||||||
|
import lombok.Data; |
||||||
|
import org.springframework.web.bind.annotation.RequestBody; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestMethod; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
import org.springframework.web.multipart.MultipartFile; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Collection; |
||||||
|
|
||||||
|
/** |
||||||
|
* 传统web开发实例 |
||||||
|
* @author tanghc |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@RequestMapping("food") |
||||||
|
public class TraditionalWebappController { |
||||||
|
|
||||||
|
|
||||||
|
// http://localhost:8081/getFoodById?id=1 网关入口
|
||||||
|
// http://localhost:2222/food/getFoodById/?id=12 本地入口
|
||||||
|
@ApiMapping(value = "getFoodById", method = RequestMethod.GET) |
||||||
|
public Food getFoodById(Integer id) { |
||||||
|
Food food = new Food(); |
||||||
|
food.setId(id); |
||||||
|
food.setName("香蕉"); |
||||||
|
food.setPrice(new BigDecimal(20.00)); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
// http://localhost:8081/getFoodById?id=2&version=1.1 网关入口
|
||||||
|
// http://localhost:2222/food/getFoodById/?id=12&version=1.1
|
||||||
|
@ApiMapping(value = "getFoodById", method = RequestMethod.GET, version = "1.1") |
||||||
|
public Food getFoodById2(Integer id) { |
||||||
|
Food food = new Food(); |
||||||
|
food.setId(id); |
||||||
|
food.setName("香蕉2"); |
||||||
|
food.setPrice(new BigDecimal(22.00)); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
// http://localhost:8081/getFoodByObj?id=2
|
||||||
|
@ApiMapping(value = "getFoodByObj", method = RequestMethod.GET) |
||||||
|
public Food getFoodByObj(Food food) { |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
// http://localhost:8081/saveFood
|
||||||
|
@ApiMapping(value = "saveFood", method = RequestMethod.POST) |
||||||
|
public Food saveFood(@RequestBody Food food) { |
||||||
|
food.setId(3); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
@ApiMapping(value = "foodUpload", method = RequestMethod.POST) |
||||||
|
public Food upload(Food food, HttpServletRequest request) { |
||||||
|
// 获取上传的文件
|
||||||
|
Collection<MultipartFile> uploadFiles = UploadUtil.getUploadFiles(request); |
||||||
|
StringBuilder sb = new StringBuilder(); |
||||||
|
for (MultipartFile multipartFile : uploadFiles) { |
||||||
|
sb.append(multipartFile.getOriginalFilename()); |
||||||
|
} |
||||||
|
food.setId(4); |
||||||
|
food.setName("文件名称+" + sb.toString()); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
@ApiMapping(value = "foodUpload3", method = RequestMethod.POST) |
||||||
|
public Food upload3(Food food, MultipartFile file) { |
||||||
|
food.setId(5); |
||||||
|
food.setName("文件名称+" + file.getOriginalFilename()); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "foodUpload2", method = RequestMethod.POST) |
||||||
|
public Food upload2(Food food, MultipartFile file) { |
||||||
|
food.setId(4); |
||||||
|
food.setName("文件名称2+" + file.getOriginalFilename()); |
||||||
|
return food; |
||||||
|
} |
||||||
|
|
||||||
|
@Data |
||||||
|
public static class Food { |
||||||
|
private Integer id; |
||||||
|
private String name; |
||||||
|
private BigDecimal price; |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue