- 浏览: 8341 次
- 性别:
- 来自: 广州
最新评论
文章列表
<%=java.net.InetAddress.getLocalHost().getHostAddress() %>:<%=request.getLocalPort()%>
使用JDK 6.0 动态编译
更多详细的步骤分析见附件
public class CompilerTest {
public static void main(String[] args) throws Exception {
//构建源代码
StringBuffer src = new StringBuffer();
String rt = "\r\n";
src.append("package com.dolla;").append(rt);
src.append("public class Ta ...
<bean id="superNewsProvider" class="..FXNewsProvider">
<property name="newsListener">
<ref bean="djNewsListener"/>
</property>
<property name="newPersistener">
<ref bean="djNewsPersister&quo ...
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext()
ctx.registerShutdownHook();
ctx.addApplicationListener(new ApplicationListener<ContextClosedEvent>() {
@Override
public void onApplicationEvent(ContextClosedEvent event) {
ServerTask task = (ServerTask) ct ...
PropertyPlaceholderConfigurer作为一个BeanFactoryPostProcessor实现,达到整合多工程下的多个分散的Properties 文件它能够使Bean在配置时引用外部属性文件。
可以将BeanFactory定义中的一些属性值放到另一个单独的标准Properties 文件中。
我们在部署应用时只需要在属性文件中对一些属性进行修改,而不用对主XML定义文件或容器所用文件进行复杂和危险的修改。
jdbc.properties
database.url=jdbc:mysql://localhost/smaple
database.driver=org.gj ...