přišel jsem na to, pokud by to někoho zajímalo, spring aplikace se spustí i přes GUI, takže jsem v GUI udělal tohle
public static void main(String[] args){
SpringApplication.run(Main.class, args);
JFrame frame = new HouseGUI();
frame.setVisible(true);
}