From 1d32bb6db20b39ffb1af3358d53fb26755ccd1a7 Mon Sep 17 00:00:00 2001 From: Ng Yat Yan Date: Tue, 26 Jul 2022 13:20:56 +0800 Subject: [PATCH] Initial commit --- .gitignore | 85 ++++++++++++++++++ .settings/.gitignore | 3 + README.md | 7 ++ pom.xml | 86 +++++++++++++++++++ .../java/com/example/demo/Application.java | 13 +++ .../com/example/demo/action/HelloAction.java | 19 ++++ .../demo/config/Struts2Configuration.java | 19 ++++ .../com/example/demo/service/UserService.java | 9 ++ .../demo/service/impl/UserServiceImpl.java | 14 +++ src/main/resources/application.properties | 1 + src/main/resources/struts.xml | 18 ++++ src/main/webapp/hello.jsp | 14 +++ src/main/webapp/index.jsp | 13 +++ 13 files changed, 301 insertions(+) create mode 100644 .gitignore create mode 100644 .settings/.gitignore create mode 100644 README.md create mode 100644 pom.xml create mode 100644 src/main/java/com/example/demo/Application.java create mode 100644 src/main/java/com/example/demo/action/HelloAction.java create mode 100644 src/main/java/com/example/demo/config/Struts2Configuration.java create mode 100644 src/main/java/com/example/demo/service/UserService.java create mode 100644 src/main/java/com/example/demo/service/impl/UserServiceImpl.java create mode 100644 src/main/resources/application.properties create mode 100644 src/main/resources/struts.xml create mode 100644 src/main/webapp/hello.jsp create mode 100644 src/main/webapp/index.jsp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..08b94cb --- /dev/null +++ b/.gitignore @@ -0,0 +1,85 @@ + +### Java template +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff: +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/dictionaries + +# Sensitive or high-churn files: +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.xml +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml + +# Gradle: +.idea/**/gradle.xml +.idea/**/libraries + +# Mongo Explorer plugin: +.idea/**/mongoSettings.xml + +## File-based project format: +*.iws +*.iml + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +### Maven template +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties + +# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) +!/.mvn/wrapper/maven-wrapper.jar + +/.classpath +/.project diff --git a/.settings/.gitignore b/.settings/.gitignore new file mode 100644 index 0000000..1de83a6 --- /dev/null +++ b/.settings/.gitignore @@ -0,0 +1,3 @@ +/org.eclipse.core.resources.prefs +/org.eclipse.jdt.core.prefs +/org.eclipse.m2e.core.prefs diff --git a/README.md b/README.md new file mode 100644 index 0000000..2bd9ddd --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +Spring Boot with Struts 2 +========================= +Spring Boot 1 with Struts 2 + +### References + +* Struts Home: http://struts.apache.org/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3945f2f --- /dev/null +++ b/pom.xml @@ -0,0 +1,86 @@ + + 4.0.0 + + com.example + struts2-spring-boot-integration + 1.0.0 + jar + + Spring Boot Struts Demo + + + UTF-8 + 11 + 1.5.22.RELEASE + 2.5.30 + + + + + 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 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 8.5.78 + + + + org.apache.struts + struts2-core + ${struts.version} + + + org.apache.struts + struts2-spring-plugin + ${struts.version} + + + org.apache.struts + struts2-java8-support-plugin + 2.5.2 + + + + + + maven-compiler-plugin + 3.6.0 + + ${java.version} + ${java.version} + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + + + repackage + + + + + + + \ No newline at end of file diff --git a/src/main/java/com/example/demo/Application.java b/src/main/java/com/example/demo/Application.java new file mode 100644 index 0000000..c65092a --- /dev/null +++ b/src/main/java/com/example/demo/Application.java @@ -0,0 +1,13 @@ +package com.example.demo; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(String[] args) { + SpringApplication.run(Application.class, args); + } + +} diff --git a/src/main/java/com/example/demo/action/HelloAction.java b/src/main/java/com/example/demo/action/HelloAction.java new file mode 100644 index 0000000..d738231 --- /dev/null +++ b/src/main/java/com/example/demo/action/HelloAction.java @@ -0,0 +1,19 @@ +package com.example.demo.action; + +import com.example.demo.service.UserService; +import com.opensymphony.xwork2.ActionSupport; + +import org.springframework.beans.factory.annotation.Autowired; + +@SuppressWarnings("serial") +public class HelloAction extends ActionSupport { + + @Autowired + protected UserService userService; + + @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 new file mode 100644 index 0000000..109447c --- /dev/null +++ b/src/main/java/com/example/demo/config/Struts2Configuration.java @@ -0,0 +1,19 @@ +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 new file mode 100644 index 0000000..4ab8dc6 --- /dev/null +++ b/src/main/java/com/example/demo/service/UserService.java @@ -0,0 +1,9 @@ +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 new file mode 100644 index 0000000..1bbf349 --- /dev/null +++ b/src/main/java/com/example/demo/service/impl/UserServiceImpl.java @@ -0,0 +1,14 @@ +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 new file mode 100644 index 0000000..ed0f146 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ +spring.application.name=struts2-boot-demo \ No newline at end of file diff --git a/src/main/resources/struts.xml b/src/main/resources/struts.xml new file mode 100644 index 0000000..ab7f799 --- /dev/null +++ b/src/main/resources/struts.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + /hello.jsp + + + /index.jsp + + + \ No newline at end of file diff --git a/src/main/webapp/hello.jsp b/src/main/webapp/hello.jsp new file mode 100644 index 0000000..0f6c104 --- /dev/null +++ b/src/main/webapp/hello.jsp @@ -0,0 +1,14 @@ + +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> +<%@ taglib prefix="s" uri="/struts-tags" %> + + + + Hello World + + +

+ Hello World!!! +

+ + \ No newline at end of file diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp new file mode 100644 index 0000000..4d9c1a9 --- /dev/null +++ b/src/main/webapp/index.jsp @@ -0,0 +1,13 @@ + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8"%> +<%@ taglib prefix="s" uri="/struts-tags"%> + + + +Index Page + + +

Hello, Index Page!!!

+ + \ No newline at end of file