Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
@RestController
public class TestController {

private final com.example.kafka.springbootkafka.Producer producer;
private final Producer producer;

@Autowired
public TestController(com.example.kafka.springbootkafka.Producer producer) {
public TestController(Producer producer) {
this.producer = producer;
}
@PostMapping("/publish")
Expand Down