首页 > 其他 > 详细

JeeSite试用

时间:2016-02-17 00:43:31      阅读:805      评论:0      收藏:0      [点我收藏+]

JeeSite主要定位于企业信息化领域。网址:http://www.oschina.net/p/jeesite

从描述来看,各种NB,下来看的最主要原因是最近还在更新,觉得有问题可以有一批人一起研究研究。

下来后发现文档还挺多,简单看了一遍,没什么概念,先编译通过然后跑起来才是王道,然后,就是各种坑。

我的环境(win7 64bit, myeclipse10.7.1, jdk1.7,maven-3.3.9)

先来看其中有一个maven压缩包,估计是有一些设置需要在maven中设置,这句话很关键

<;activeProfiles>
  <;activeProfile>thinkgem</activeProfile>
</activeProfiles>

将之加入当前maven中

然后发现某些jar包不存在,手动添加如下内容到pom.xml中

<restlet-version>2.3.6</restlet-version>
...
 
 
    <dependency> 
        <groupId>org.restlet.jse</groupId> 
        <artifactId>org.restlet</artifactId> 
        <version>${restlet-version}</version> 
    </dependency> 
    <dependency> 
        <groupId>org.restlet.jse</groupId> 
        <artifactId>org.restlet.ext.jackson</artifactId> 
        <version>${restlet-version}</version> 
    </dependency> 
 
    ...
 
    <dependency>
        <groupId>org.activiti</groupId>
        <artifactId>activiti-common-rest</artifactId>
        <version>${activiti.version}</version>
    </dependency>
    <dependency>
        <groupId>org.activiti</groupId>
        <artifactId>activiti-rest</artifactId>
        <version>${activiti.version}</version>
    </dependency>
    <dependency>
        <groupId>org.activiti</groupId>
        <artifactId>activiti-bpmn-model</artifactId>
        <version>${activiti.version}</version>
    </dependency>

 

然后原先的缺的jar包解决了,然又出了更多的错误,

技术分享

JeeSite试用

原文:http://www.cnblogs.com/luhouxiang/p/5194061.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!