2017-04-14 14 views
0

私は、JBossサーバーにデプロイできるjarでWebサービスプロジェクトを構築したいと思います。私は私が私が10Koとしますアーカイブを取得するの.jarプロジェクトを希望することを指定したい場合は、このコンテンツ content of my .war web serviceWebサービスのmavenビルドjarが動作しない

ではなく、私のpom.xmlに12MOを作る.warプロジェクトをコンパイルする場合、これは行うことができます

content of my .jar web service

ここに私のpom.xmlファイルだた、この写真のようにほとんど何も含まれていない

<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>MonWebServiceFacility</groupId> 
<artifactId>MonWebServiceFacility</artifactId> 
<version>0.0.1-SNAPSHOT</version> 
<!--<packaging>war</packaging>--> 
<build> 
    <sourceDirectory>src</sourceDirectory> 
    <plugins> 
     <plugin> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>3.5.1</version> 
      <configuration> 
       <source>1.7</source> 
       <target>1.7</target> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 
<properties> 
    <cxf.version>3.1.7</cxf.version> 
</properties> 
<dependencies> 
    ...SOME DEPENENCIES... 
</dependencies> 

JBossサーバーにデプロイするjarアーカイブをビルドするにはどうしたらいいですか?

project architecture

答えて

0

あなたがのpom.xmlに<packaging>jar</packaging>を使用する必要があるともwebaap> WEB_INFフォルダにweb.xmlファイルを作成する必要があります。

は、ここに私のプロジェクトのアーキテクチャです。

<servlet> 
<servlet-name>myServlet</servlet-name> 
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
<init-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath:ApplicationContext.xml</param-value> 
</init-param> 
<load-on-startup>1</load-on-startup> 

<servlet-mapping> 
    <servlet-name>myServlet</servlet-name> 
    <url-pattern>/api/*</url-pattern> 
</servlet-mapping> 

<filter> 
    <filter-name>encoding-filter</filter-name> 
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
    <init-param> 
     <param-name>encoding</param-name> 
     <param-value>UTF-8</param-value> 
    </init-param> 
    <init-param> 
     <param-name>forceEncoding</param-name> 
     <param-value>true</param-value> 
    </init-param> 
</filter> 

<filter-mapping> 
    <filter-name>encoding-filter</filter-name> 
    <url-pattern>/*</url-pattern> 
</filter-mapping> 

<welcome-file-list> 
    <welcome-file>/index.jsp</welcome-file> 
</welcome-file-list> 
関連する問題