Jelajahi Sumber

修改项目输出路径可能导致部署失败

yaobo 7 tahun lalu
induk
melakukan
0a3174fc08
21 mengubah file dengan 4 tambahan dan 42 penghapusan
  1. 1 1
      .classpath
  2. 1 1
      .settings/com.genuitec.eclipse.j2eedt.core.prefs
  3. 2 2
      .settings/org.eclipse.wst.common.component
  4. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/controller/ClickController.class
  5. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/controller/PersonController.class
  6. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/controller/RecommendController.class
  7. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/dao/ClickMapper.class
  8. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/dao/PersonMapper.class
  9. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/dao/RecommendMapper.class
  10. 0 15
      src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/ClickMapper.xml
  11. 0 8
      src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/PersonMapper.xml
  12. 0 15
      src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/RecommendMapper.xml
  13. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/model/Click.class
  14. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/model/Person.class
  15. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/model/Recommend.class
  16. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/IClickService.class
  17. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/IPersonService.class
  18. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/IRecommendService.class
  19. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/ClickServiceImpl.class
  20. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/PersonServiceImpl.class
  21. TEMPAT SAMPAH
      src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/RecommendServiceImpl.class

+ 1 - 1
.classpath

@@ -2,7 +2,7 @@
 <classpath>
 	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
 	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
 	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
 		<attributes>
 			<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>

File diff ditekan karena terlalu besar
+ 1 - 1
.settings/com.genuitec.eclipse.j2eedt.core.prefs


+ 2 - 2
.settings/org.eclipse.wst.common.component

@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project-modules id="moduleCoreId" project-version="1.5.0">
     <wb-module deploy-name="efunbox-recommend">
-        <wb-resource deploy-path="/" source-path="/src/main/webapp"/>
         <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
         <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
-        <property name="java-output-path" value="/efunbox-recommend/src/main/webapp/WEB-INF/classes"/>
+        <wb-resource deploy-path="/" source-path="/src/main/webapp"/>
         <property name="context-root" value="/efunbox-recommend"/>
+        <property name="java-output-path" value="/efunbox-recommend/src/main/webapp/WEB-INF/classes"/>
     </wb-module>
 </project-modules>

TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/controller/ClickController.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/controller/PersonController.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/controller/RecommendController.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/dao/ClickMapper.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/dao/PersonMapper.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/dao/RecommendMapper.class


+ 0 - 15
src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/ClickMapper.xml

@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="cn.efunbox.dao.ClickMapper">
-    <!-- 查询所有结果 -->  
-    <insert id="insert" parameterType="map">
-		insert into efunbox_click(age,sex,film_code,film_type,mark_type,is_vip,film_grade,film_star,age_group,series_count,publish_date,online_date,area,movie_type,target_people,language,duration,created) 
-		values(#{click.age},#{click.sex},#{click.film_code},#{click.film_type},#{click.mark_type},#{click.is_vip},#{click.film_grade},#{click.film_star},#{click.age_group},#{click.series_count},#{click.publish_date},#{click.online_data},#{click.area},#{click.movie_type},#{click.target_people},#{click.language},#{click.duration},#{click.created}) 
-	</insert>
-    
-    <!-- 查询所有结果 -->  
-    <select id="queryAll" resultType="Click" >  
-        select * from efunbox_click 
-    </select>
-    
-</mapper>

+ 0 - 8
src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/PersonMapper.xml

@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="cn.efunbox.dao.PersonMapper">
-    <!-- 查询所有person -->  
-    <select id="queryAll" resultType="Person" >  
-        select * from person  
-    </select>
-</mapper>

+ 0 - 15
src/main/webapp/WEB-INF/classes/cn/efunbox/mapping/RecommendMapper.xml

@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-<mapper namespace="cn.efunbox.dao.RecommendMapper">
-    <!-- 查询所有结果 -->  
-    <select id="queryAll" resultType="Recommend" >  
-        select * from efunbox_recmd  
-    </select>
-    
-    <!-- 搜索 -->  
-    <select id="search" parameterType="map" resultType="Recommend" >  
-        select * from efunbox_recmd 
-        where age=#{param1} and sex=#{param2} 
-		order by score desc limit #{param3} offset #{param4}
-    </select>
-</mapper>

TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/model/Click.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/model/Person.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/model/Recommend.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/IClickService.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/IPersonService.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/IRecommendService.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/ClickServiceImpl.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/PersonServiceImpl.class


TEMPAT SAMPAH
src/main/webapp/WEB-INF/classes/cn/efunbox/service/impl/RecommendServiceImpl.class