本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
如何在CRM和C4C中用代码判断当前是否处于configuration模式
CRM
CL_CHTMLB_CONFIG_UTILITY=>IS_CONFIG_MODE_ENABLED
返回值为boolean:
C4C
使用api:sap.client.flex.Personalization.isKeyUser
这个api返回的是属性_bIsKeyUser:
该属性在菜单Adapt->Enter Master Layout时被置为true:
...
springboot:@Configuration&@Bean
Configuration:减少xml中配置,可以生命一个配置类来对bean进行配置
=======================================================
SpringConfig.java
============================
package org.spring.springboot.configs;
import org.spri ...
CATALINA_OPTS vs JAVA_OPTS
在Tomcat的catalina.sh文件中的启停server脚本中都应用到了两个变量: CATALINA_OPTS和JAVA_OPTS。用于保存Tomcat运行所需的各种参数。
他们在文件中的注释如下:
(可选)Java 执行"start","stop"或"run"命令时用到的运行时参数; [JAVA_OPTS]
(可选)Java 执行& ...
如何复制Eclipse里的Run Configurations,Launch,Junit Launch
1. 这些文件默认保存在<workspace>/.metadata/.plugins/org.eclipse.debug.core/.launches下面,所以如果你切换到了一个新版本的Eclipse,而且新checkout的一个project from SVN或者perforce之类的,那么只要复制.lauches下面的文件到同名的目录即可
2.重启Eclipse,之后你就可以在Ru ...
设立MyEclipse不同的workspace共享配置信息
设置MyEclipse不同的workspace共享配置信息
随着项目的不断增多,所有的项目都放在一个workspace里,导致myeclispe在启动和运行时非常慢,这时需要建立多个 workspace。结果每新建一个workspace重新配置一下,但是配置的东西都是一样的,很麻烦,有什么好办法可以共享一下配置呢?
eclipse和MyEclispe的配置都在.metadata\.p ...
Spring @Configuration用annotation装配spring
下面是一个典型的Spring配置文件(application-config.xml)
<beans>
<bean id="orderService" class="com.acme.OrderService"/>
<constructor-arg ref="orde ...
使用Tycho来构建你的RCP程序(六) —— Configuration
经过前面的五篇之后,我相信你已经可以熟练的操作使用Tycho来构建你的RCP程序了。RCP开发其实在Java开发当中是非常非常小众的东西。小众的东西注定了资料少而且即便有也是英文的,这一篇会介绍Tycho的一些general configuration,希望能帮到有需要的朋友。
1.在Tycho build当中我们在控制台上发现很多的关于enconding的warning
写道
[W ...
C# 自定义配置节点简例
参考:
《How to: Create Custom Configuration Sections Using ConfigurationSection》
《Custom Configuration Sections for Lazy Coders》
《How to: Add CData or Text in a ConfigurationElement》
示例配置文件:
& ...
SAXParseException: The content of element type "configuration" must match
在mybatis的配置文件中新增加<databaseIdProvider type="VENDOR">节点后,原来正确的配置文件立即变得不可用了,出现的错误信息如下:
Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException:
### Error ...
solve the problem about can not find mysqlclient
solve the problem about can not find mysqlclient :
the tips:
----------------------------------------------------------------------------------------------------------------------
Gem::Installer:: ...
【Maven】Project configuration is not up-to-date with pom.xml错误解决方法
导入一个Maven项目之后发现有一个如下的错误:
Project configuration is not up-to-date with pom.xml. Run project configuration update
其实这个问题解决非常简单:
在项目上右键——【Maven】——【Update Project Configuration……】
这时会打开一个(Update M ...
Hibernate API之Configuration类
Hibernate API之Configuration类
Configuration类负责管理Hibernate的配置信息,一个Configuration实例代表了有用程序中Java类到数据库的映射的集合。应用程序通常只是创建一个Configuration实例,并通过它来创建SessionFactory实例,如下面的代码:
SessionFactory SessionFactory ...
Additional configuration about PlayFramework
When running an application in production mode you can override any configuration. This section covers the more common use cases.
All these additional configurations are specified using Java System ...
在Spring中使用自定义Hibernate命名策略
先说一下结果 ,只需要在applictioncontext.xml中配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http:/ ...
ActiveMQ消息持久化机制配置注意事项
在两个地方可以配置 persistent 属性,分别是broker端和client端。
broker端配置文件里的 broker 对象属性中有一个 persistent 属性,该属性的默认值是 true。
在默认属性 true 的前提下,如果希望以 non-persistent 的方式传输消息,需要在 client(producer)端指定 DeliveryMode. NON ...
Spring IOC XML Configuration
Spring Note
Spring Introdution
引入相关的包
----spring-context-3.2.1.RELEASE.jar
----spring-beans-3.2.1.RELEASE.jar
----spring-core-3.2.1.RELEASE.jar
----spring-expression-3.2.1.RELEASE.jar
----commons-logg ...
Spring DBCP 数据库连接池配置
Spring dbcp 数据库连接池的配置
DataSource的配置与使用
第一步:引入相关的jar包
commons-dbcp-1.4.jar
commons-pool-1.6.jar
[b]在beans.xml里面对DataSource进行配置[/b]
&l ...
Spring3: Dependency Configuration In Detail(Part II)
Introduction:
In this article, we focus on the configuration file beans.xml for IoC purpose.
Focusing on initialize beans whose property are collection types.
Including <list/> ...
Spring3: Dependency Configuration In Detail(Part I)
Introduction:
In this article, we focus on the configuration file beans.xml for IoC purpose.
1. A simple bean injected with simple property
<?xml version="1.0" encoding="UT ...