Spring MVC 可以通过使用MySQL数据库来读取图片,并将其显示在前端页面上。以下是一个简单的示例代码:
@Entity
@Table(name = "images")
public class Image {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Lob
private byte[] data;
// getters and setters
}
@Repository
public interface ImageRepository extends JpaRepository<Image, Long> {
}
@Controller
public class ImageController {
@Autowired
private ImageRepository imageRepository;
@GetMapping("/image/{id}")
public ResponseEntity<byte[]> getImage(@PathVariable Long id) {
Optional<Image> image = imageRepository.findById(id);
if (image.isPresent()) {
byte[] imageData = image.get().getData();
return ResponseEntity.ok().contentType(MediaType.IMAGE_JPEG).body(imageData);
} else {
return ResponseEntity.notFound().build();
}
}
}
<img src="/image/{id}" alt="Image">
Image image = new Image();
byte[] data = Files.readAllBytes(Paths.get("path/to/image.jpg"));
image.setData(data);
imageRepository.save(image);
这样就可以通过Spring MVC从MySQL数据库中读取图片并显示在前端页面上了。请注意,以上代码仅供参考,实际应用中可能需要根据具体需求进行调整。