The file “beans.xml” used for you application is already a kind of configuration file. However, this file is designed for the developer who can quickly customize the application with less coding changes. It is not recommended for an end user to change the file.
For example, you can, of course, define the database connection properties in [...]
9
2010
How to Configure Spring beans.xml File: The Use of PropertyPlaceholderConfigurer
7
2010
How to Configure Spring beans.xml File: Collection properties and EntityManagerFactory Examples
Java beans in Spring can also have their collection properties populated in the beans.xml file. The collection properties here mean things like List, Map and Array.
For example, if you want to create a JPA EntityManagerFactory with a set of connection properties, these properties can be configured in beans.xml like this:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" [...]
18
2010
How to Configure Spring beans.xml File: Basic Usage
how to configure spring beans.xml file with more flexibility
Spring is a very flexible java framework. In spring, beans are the main building bricks of an application while the bean configuration file (mostly beans.xml) acts as cement that glues the beans together.
The file beans.xml also allows beans to be initialized with particular values. For example, you [...]
24
2010
Remember to Clear Entity Manager if Entities No Longer Used
Recently a lesson was learned about the proper use of Java JPA to persist a large number of records into database in a batch process.
Some times it is necessary to load the records line by line from a large file and insert into the database table. There can be several ways to do this:
Use the [...]
5
2009
Bad Request Error with apache mod_rewrite
If you use apache module mod_alias together with module mod_rewrite, you probably encounter “Bad Request” error if the settings are not correctly configured.
For example, if you want to make the folder “/opt/mysite_v1.2″ have the alias as “/mysite” so it can be accessed as http://www.mydomain.com/mysite. And you want to have clean url “/mysite/page1″ mapped to “/mysite/index.php?p=page1″.
To [...]