diff --git a/pom.xml b/pom.xml index 3945f2f..4389dc9 100644 --- a/pom.xml +++ b/pom.xml @@ -1,48 +1,49 @@ - + 4.0.0 com.example - struts2-spring-boot-integration + struts7-springboot3-integration 1.0.0 jar - Spring Boot Struts Demo + Struts7 Spring-Boot3 HelloWorld Demo UTF-8 - 11 - 1.5.22.RELEASE - 2.5.30 + 17 + 3.4.3 + 7.0.3 + 3.14.0 + 6.1.0 + 4.0.0 - + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + org.springframework.boot spring-boot-starter-web - ${spring-boot.version} - - - - javax.servlet - javax.servlet-api - 4.0.1 - - - javax.servlet.jsp - javax.servlet.jsp-api - 2.3.3 - javax.servlet - jstl - 1.2 + jakarta.servlet.jsp + jakarta.servlet.jsp-api + ${jsp-api.version} - org.apache.tomcat.embed - tomcat-embed-jasper - 8.5.78 + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api - org.apache.struts struts2-core @@ -55,15 +56,19 @@ org.apache.struts - struts2-java8-support-plugin - 2.5.2 + struts2-convention-plugin + ${struts.version} + + + org.apache.tomcat.embed + tomcat-embed-jasper maven-compiler-plugin - 3.6.0 + ${maven-compiler-plugin.version} ${java.version} ${java.version} diff --git a/src/main/java/com/example/demo/Application.java b/src/main/java/com/example/demo/Application.java index c65092a..d8e0a8f 100644 --- a/src/main/java/com/example/demo/Application.java +++ b/src/main/java/com/example/demo/Application.java @@ -1,13 +1,39 @@ package com.example.demo; +import java.util.ArrayList; +import java.util.Collection; + +import org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.boot.web.servlet.FilterRegistrationBean; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; +import org.springframework.context.annotation.Bean; @SpringBootApplication -public class Application { +public class Application extends SpringBootServletInitializer { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } + + @Override + protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { + return application.sources(Application.class); + } - public static void main(String[] args) { - SpringApplication.run(Application.class, args); - } + @Bean + public FilterRegistrationBean filterRegistrationBean() { + Collection urlPatterns = new ArrayList<>(); + urlPatterns.add("/*"); + FilterRegistrationBean registrationBean = new FilterRegistrationBean<>(); + StrutsPrepareAndExecuteFilter struts = new StrutsPrepareAndExecuteFilter(); + registrationBean.setFilter(struts); + registrationBean.setName("strutsFilter"); + registrationBean.setOrder(1); + registrationBean.setUrlPatterns(urlPatterns); + return registrationBean; + } } diff --git a/src/main/java/com/example/demo/action/HelloAction.java b/src/main/java/com/example/demo/action/HelloAction.java index d738231..f824e93 100644 --- a/src/main/java/com/example/demo/action/HelloAction.java +++ b/src/main/java/com/example/demo/action/HelloAction.java @@ -1,19 +1,13 @@ package com.example.demo.action; -import com.example.demo.service.UserService; -import com.opensymphony.xwork2.ActionSupport; - -import org.springframework.beans.factory.annotation.Autowired; +import org.apache.struts2.ActionSupport; @SuppressWarnings("serial") public class HelloAction extends ActionSupport { - @Autowired - protected UserService userService; - - @Override - public String execute() throws Exception { - return SUCCESS; - } + @Override + public String execute() throws Exception { + return SUCCESS; + } } diff --git a/src/main/java/com/example/demo/config/Struts2Configuration.java b/src/main/java/com/example/demo/config/Struts2Configuration.java deleted file mode 100644 index 109447c..0000000 --- a/src/main/java/com/example/demo/config/Struts2Configuration.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.example.demo.config; - -import org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter; -import org.springframework.boot.web.servlet.FilterRegistrationBean; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; - -@Configuration -public class Struts2Configuration { - - @Bean - public FilterRegistrationBean someFilterRegistration() { - FilterRegistrationBean registration = new FilterRegistrationBean(); - registration.setFilter(new StrutsPrepareAndExecuteFilter()); - registration.addUrlPatterns("*"); - return registration; - } - -} diff --git a/src/main/java/com/example/demo/service/UserService.java b/src/main/java/com/example/demo/service/UserService.java deleted file mode 100644 index 4ab8dc6..0000000 --- a/src/main/java/com/example/demo/service/UserService.java +++ /dev/null @@ -1,9 +0,0 @@ -package com.example.demo.service; - -/** - * user service - * - * @author linux_china - */ -public interface UserService { -} diff --git a/src/main/java/com/example/demo/service/impl/UserServiceImpl.java b/src/main/java/com/example/demo/service/impl/UserServiceImpl.java deleted file mode 100644 index 1bbf349..0000000 --- a/src/main/java/com/example/demo/service/impl/UserServiceImpl.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.example.demo.service.impl; - -import org.springframework.stereotype.Service; - -import com.example.demo.service.UserService; - -/** - * user service implementation - * - * @author linux_china - */ -@Service -public class UserServiceImpl implements UserService { -} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index ed0f146..0337899 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1 +1,2 @@ -spring.application.name=struts2-boot-demo \ No newline at end of file +spring.application.name=struts7-springboot3-integration +server.contextPath=/webapp \ No newline at end of file diff --git a/src/main/resources/struts.xml b/src/main/resources/struts.xml index ab7f799..90d7000 100644 --- a/src/main/resources/struts.xml +++ b/src/main/resources/struts.xml @@ -2,9 +2,7 @@ - - + + Spring Struts 2 + + + index.jsp + + + + org.springframework.web.context.ContextLoaderListener + + + + struts2 + org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter + + + + struts2 + /* + + + diff --git a/src/main/webapp/hello.jsp b/src/main/webapp/hello.jsp index 0f6c104..fc884f7 100644 --- a/src/main/webapp/hello.jsp +++ b/src/main/webapp/hello.jsp @@ -7,8 +7,9 @@ Hello World -

- Hello World!!! -

+

+ Hello World!!! +

+ Index Page \ No newline at end of file diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 4d9c1a9..07839ad 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -9,5 +9,6 @@

Hello, Index Page!!!

+ Hello Page \ No newline at end of file