mirror of
https://gitea.gofwd.group/Forward_Group/ballistic-builder-spring.git
synced 2025-12-05 18:46:44 -05:00
moving controllers to controllers package
This commit is contained in:
@@ -7,7 +7,7 @@ import org.springframework.context.annotation.ComponentScan;
|
||||
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
||||
|
||||
@SpringBootApplication
|
||||
@ComponentScan(basePackages = "group.goforward.ballistic")
|
||||
//@ComponentScan(basePackages = "group.goforward.ballistic")
|
||||
@EntityScan(basePackages = "group.goforward.ballistic.model")
|
||||
@EnableJpaRepositories(basePackages = "group.goforward.ballistic.repos")
|
||||
public class BallisticApplication {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package group.goforward.ballistic.web;
|
||||
package group.goforward.ballistic.controllers;
|
||||
|
||||
import group.goforward.ballistic.imports.MerchantFeedImportService;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
@@ -1,4 +1,4 @@
|
||||
package group.goforward.ballistic.web;
|
||||
package group.goforward.ballistic.controllers;
|
||||
|
||||
import group.goforward.ballistic.model.Merchant;
|
||||
import group.goforward.ballistic.repos.MerchantRepository;
|
||||
@@ -1,4 +1,4 @@
|
||||
package group.goforward.ballistic.web;
|
||||
package group.goforward.ballistic.controllers;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
Reference in New Issue
Block a user