Skip to content

Commit

Permalink
♻️ mail fix autowire syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhir committed Sep 2, 2024
1 parent 0914811 commit 761938b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package de.muenchen.refarch.email.integration;

import org.springframework.beans.factory.annotation.Autowired;
import lombok.RequiredArgsConstructor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;

@SpringBootApplication
@RequiredArgsConstructor
public class EmailJavaExampleApplication {
@Autowired
TestService testService;
private final TestService testService;

public static void main(final String[] args) {
SpringApplication.run(EmailJavaExampleApplication.class, args);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package de.muenchen.refarch.email.integration;

import org.springframework.beans.factory.annotation.Autowired;
import lombok.RequiredArgsConstructor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.context.event.EventListener;

@SpringBootApplication
@RequiredArgsConstructor
public class EmailRestExampleApplication {
@Autowired
TestService testService;
private final TestService testService;

public static void main(final String[] args) {
SpringApplication.run(EmailRestExampleApplication.class, args);
Expand Down

0 comments on commit 761938b

Please sign in to comment.