0

このばかげた質問をして申し訳ありません。私は頭を悩ませてきましたが、単純なプロジェクトを動的 Web プロジェクトに変換する方法がまだわかりません。

単純なアプリケーションを実行したい WebSphere Application Server を使用しています。

これがアプリケーションのプロジェクト構造です。右クリックしてJavaアプリケーションとして実行すると、スムーズに実行されます。これを WebSphere Application Server で実行できるようにするには、どこを変更すればよいですか。

サンプルプロジェクト

--src
|  |--main
|  |   |--java
|  |     --com
|  |       --mykong
|  |         --core
|  |            --App.java
|  |            --HelloWorld.java       
|  |
|  |   |--resouces
|  |      --SpringBeans.xml
|  |
|  |--test
|     |--java
|         --com
|          --mykong
|             --core
|               --AppTest.java
|
|--target
|--.classpath
|--.project
|--.pom.xml

App.java

package com.mkyong.core;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class App {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "SpringBeans.xml");

        HelloWorld obj = (HelloWorld) context.getBean("helloBean");
        obj.printHello();
    }
}

HelloWorld.java

package com.mkyong.core;

/**
 * Spring bean
 * 
 */
public class HelloWorld {
    private String name;

    public void setName(String name) {
        this.name = name;
    }

    public void printHello() {
        System.out.println("Spring 3 : Hello ! " + name);
    }
}

SpringBeans.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

    <bean id="helloBean" class="com.mkyong.core.HelloWorld">
        <property name="name" value="Mkyong" />
    </bean>

</beans>

AppTest.java

package com.mkyong.core;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
 * Unit test for simple App.
 */
public class AppTest 
    extends TestCase
{
    /**
     * Create the test case
     *
     * @param testName name of the test case
     */
    public AppTest( String testName )
    {
        super( testName );
    }

    /**
     * @return the suite of tests being tested
     */
    public static Test suite()
    {
        return new TestSuite( AppTest.class );
    }

    /**
     * Rigourous Test :-)
     */
    public void testApp()
    {
        assertTrue( true );
    }
}

ご協力いただきありがとうございます.....

4

1 に答える 1

0

すでに Maven を使用しているため、おそらく最も簡単な方法は、maven-eclipse-pluginでwtpversionを構成することです。そして、プロジェクトで次を実行します。

mvn eclipse:eclipse

もう 1 つのオプションは、 Maven Integration for Eclipse WTPをインストールすることです。

于 2012-05-27T15:09:14.697 に答える