commit 1d32bb6db20b39ffb1af3358d53fb26755ccd1a7 Author: Ng Yat Yan <ng.yatyan@gmail.com> Date: Tue Jul 26 13:20:56 2022 +0800 Initial commit 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 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>com.example</groupId> + <artifactId>struts2-spring-boot-integration</artifactId> + <version>1.0.0</version> + <packaging>jar</packaging> + + <name>Spring Boot Struts Demo</name> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <java.version>11</java.version> + <spring-boot.version>1.5.22.RELEASE</spring-boot.version> + <struts.version>2.5.30</struts.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>${spring-boot.version}</version> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>4.0.1</version> + </dependency> + <dependency> + <groupId>javax.servlet.jsp</groupId> + <artifactId>javax.servlet.jsp-api</artifactId> + <version>2.3.3</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + <version>1.2</version> + </dependency> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-jasper</artifactId> + <version>8.5.78</version> + </dependency> + + <dependency> + <groupId>org.apache.struts</groupId> + <artifactId>struts2-core</artifactId> + <version>${struts.version}</version> + </dependency> + <dependency> + <groupId>org.apache.struts</groupId> + <artifactId>struts2-spring-plugin</artifactId> + <version>${struts.version}</version> + </dependency> + <dependency> + <groupId>org.apache.struts</groupId> + <artifactId>struts2-java8-support-plugin</artifactId> + <version>2.5.2</version> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.6.0</version> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + </configuration> + </plugin> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>${spring-boot.version}</version> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> \ 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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "http://struts.apache.org/dtds/struts-2.5.dtd"> + +<struts> + + <constant name="struts.devMode" value="true" /> + <constant name="struts.objectFactory" value="spring" /> + + <package name="default" extends="struts-default" namespace='/'> + <action name="hello" + class="com.example.demo.action.HelloAction" method="execute"> + <result name="success">/hello.jsp</result> + </action> + <action name="*"> + <result>/index.jsp</result> + </action> + </package> +</struts> \ 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 @@ +<!doctype html> +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> +<%@ taglib prefix="s" uri="/struts-tags" %> +<html lang="en-US"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>Hello World</title> +</head> +<body> +<h2> + Hello World!!! +</h2> +</body> +</html> \ 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 @@ +<!doctype html> +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8"%> +<%@ taglib prefix="s" uri="/struts-tags"%> +<html lang="en-US"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>Index Page</title> +</head> +<body> + <h2>Hello, Index Page!!!</h2> +</body> +</html> \ No newline at end of file