- 浏览: 7066 次
- 性别:
- 来自: 广州
最新评论
文章列表
<build>
<finalName>project name</finalName>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.java</include>
<include>**/*.properties</include>
<includ ...
It's from http://www-01.ibm.com/support/docview.wss?uid=swg21590141
Technote (troubleshooting)
Problem
Deploying a portlet war either using the Portal Manage Web Modules portlet or xmlaccess fails with a message 'A composition unit with name <appname> already exists'
Symptom
In the SystemOu ...
Eclipse中maven项目除了运用maven插件中的 maven package 以及命令行下执行 mvn package 执行打包,还可以利用Eclipse的export 功能,但是需要修改.classpath 中的maven classpth的配置信息:
把原来的配置信息:
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
修改为:
<classpathentry exported="true&quo ...
- 2013-06-20 14:39
- 浏览 3260
- 评论(0)
新项目用了Spring2.5的@Autowired方式,大大的节省了配置文件;下面来试一试:
Dao层,这里省去了所有的getter和setter方法,以后不用拉这么长了:)
@Repository
public class UserDaoImpl extends GenericDaoJpa<User, Long> implements UserDao {
public UserDaoImpl() {
super(User.class);
}
}
Service层,这里省去了所有的getter和setter方法,以后不用拉这么长了:)
@Serv ...