release- 异常处理

release-2024-08-08
pikaqiudeshujia 6 months ago
parent cabed10760
commit df964ac563

@ -79,9 +79,12 @@ public class ArtistRepresentativeService {
artistRepresentative.setSongInfo(songInfo); artistRepresentative.setSongInfo(songInfo);
case 3: case 3:
// 商品 // 商品
try {
PmsProduct pmsProduct = restTemplate.getForObject(mallConfig.getProductUrl().replace("{id}", representative.getRepresentativeId()), PmsProduct.class); PmsProduct pmsProduct = restTemplate.getForObject(mallConfig.getProductUrl().replace("{id}", representative.getRepresentativeId()), PmsProduct.class);
artistRepresentative.setPmsProduct(pmsProduct); artistRepresentative.setPmsProduct(pmsProduct);
} catch (Exception e) {
e.printStackTrace();
}
break; break;
default: default:
break; break;

Loading…
Cancel
Save