Servlets :: Why All Configuration Files Are In XML Format
Mar 3, 2014I dunno why all the configuration files for ex: web.xml and struts.xml in any web application are xml files.
View RepliesI dunno why all the configuration files for ex: web.xml and struts.xml in any web application are xml files.
View RepliesI have a library that I'm writing, the library contains a spring xml configuration file (lets say it's called libraryContext.xml) that sets the library up correctly for runtime, it also includes a test spring xml file that sets the library up for test by importing libraryContext.xml and overriding certain dependency injection beans (the library basically connects to a real database under normal conditions and uses dummy DAO's under test conditions). That bit is all fine.
The thing is, when I build the jar for the library (lets say it's called library-0.1.jar), the jar does not seem to contain the libraryContext.xml and that means that I can't import library.xml into my applications context.xml.
Basically, I have this line in my applications context.xml
Java Code: <import resource = "classpath:libraryContext.xml"/> mh_sh_highlight_all('java');
Unsurprisingly, since the xml file is not contained in the library-0.1.jar, the error I get is,
Java Code:
Offending resource: class path resource [applicationContext.xml];
nested exception is org.springframework.beans.factory.BeanDefinitionStoreException:
IOException parsing XML document from class path resource [libraryContext.xml];
nested exception is java.io.FileNotFoundException: class path resource [libraryContext.xml] cannot be opened because it does not exist mh_sh_highlight_all('java');
With respect to potential solutions to the above problem, I could:
1) physically copy the libraryContext.xml file (and its other *.xml and *.properties dependencies) into the application, but then I'd have to maintain duplicate files - I don't like this option.
2) find out if there is a better way to handle this problem from people who know better. E.g. is there a way to embed the libraryContext.xml file (and it's dependencies) into the jar file so that it can then be imported into the application. I've spent a while on google trying to figure this out and haven't come up with anything overly useful (perhaps I've been using the wrong search parameters).
I am creating an application in core java where i am using database. I need to create a database configuration file & include it all other files. So, how can i do that ?
Java Code:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:MYDSN","system","tiger"); mh_sh_highlight_all('java');
I cannot do this in an interface since only abstract methods exist there. I tried to create an another class file to extend it but my program is already extending other class i.e. javax.swing.JFrame..How can i implement this ? just by creating the object of that class in main method ?
I have to read SRTM .hgt binary files in Java and then rewrite them in a binary proprietary format. The format is to write the .hgt file as 2-dimensional binary array of either 1 byte, 2 byte, 3 byte or 4 byte integers in BIG ENDIAN format. I have chosen short as the data type(2 bytes) because I believe the data in the .hgt file has the maximum value of 32767. I am enclosing the code here - how do I read the data into 2-dimensional array ?
Java Code:
FileChannel fileInputChannel = new FileInputStream(fileInput).getChannel();
FileChannel fileOutputChannel = new FileOutputStream(fileOutput).getChannel();
int size = (int)fileInputChannel.size();
[code]....
Why I can't get an external style sheet work work when using JSP files? Putting a link in the doc head like I would for an HTML or PHP file does not work. The style sheet is in the exact same directory as the JSP files and I cannot get it to work. I think I have tried about everything that has been suggested on the web with no luck.
If I create an HTML doc in the same directory as the JSP files, and add the below line in the document head, it works fine. Doing the same thing with a JSP file does nothing.
<link rel="stylesheet" type="text/css" href="style.css">
I would like to know what is the best way to upload & download files using Servlets/Jsp's . In some websites I have seen example using third party API(by oreilly). Is it better to follow any third party or can we do it just by using I/O streams. What are the steps of uploading files. And where do we need to store files once the user uploads ,Database or server??
View Replies View RelatedWe have a website used for downloading large files as large as 6gb and sometimes larger. We have all files in FTP server. The websit is JSP/Servlet /Tomcat combination. Below is code sample. I need a solution to increase the download speed. I understand it is bound to network bandwidth but are the steps that we need to take while we have such large files.I read about multipart downloads,gunzip streaming.
//first connect to FTP server and login and keep connection
Calendar cal=Calendar.getInstance();
startTime=cal.getTime();
fis=ftp.downloadFile(ftpclient,separator+resourceID);
response.setContentType("application/*");
response.setHeader("Content-Disposition", "attachment; filename="" + downloadFileName + "";");
byte[] bytes = new byte[1024];
[code]....
When I map my servlet to the ROOT of the site, the javascript, CSS and image files are not served. The conversation between the server and browser shows the files are being sent, but they are not rendered in the browser. This happens in both Firefox and Chrome.
If I change the mapping to anything other than the root, such as /x/, everything works as it should.
Here's my web.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
[Code] .....
I wrote a code to download a zip file in jsp, but it is not working as expected, when i execute this following program i am able to download file with "download_all.jsp" name, but now original download file (/tmp/Download_All/1244687508907.Zip). The download_all.jsp is my jsp name which is having the following code. Here is the code snippet:
try {
String filename = "/tmp/Download_All/1244687508907.Zip";
if(request.getParameter("filepath")!=null){
filename=request.getParameter("filepath");
}
// set the http content type to "APPLICATION/OCTET-STREAM
response.setContentType("APPLICATION/OCTET-STREAM");
[code]....
I have a code that uploads files in server after browsing folders and files then get the paths of files but I have a problem in getting the paths
List items = upload.parseRequest(request);
Iterator iterator = items.iterator();
while (iterator.hasNext()) {
FileItem item = (FileItem) iterator.next();
if (!item.isFormField())
{ fileName = item.getName();
root = getServletContext().getRealPath("/");
path = new File(root + "/uploads");
[Code]...
list1 must has paths that I want but I do not get the paths of upload files
I am using RAD and I copied the Tomcat server from server to local folder. Then I tried to add this tomcat by adding new server. I got the error in title. After searching, I copied the Tomcatconf files to myworkspaceserver omcat at localhost-config, restart RAD and refresh. But now I am getting the error that the conf may corrupted or incomplete.
View Replies View RelatedFor some time i've been trying to rewrite my XML configurated webapp into one that has Java Based cofiguration. Unfortunately ,even after going through many tutorials i've been unable to do so.
View Replies View RelatedI want to create a singleton for DirContext for LDAP configuration, hence i have used the initialize on demandclass holder idiom as shown below
public class SlmApplicationContext {
/**
* inner class to hold the instance.
*/
private static class Holder {
private static DirContext instance = new InitialDirContext();
}
/**
* Method to get the singleton instance of this class.
* @return SlmApplicationContext
*/
public static SlmApplicationContext getInstance() {
return Holder.instance; }
...
}
Now the problem is if i close the DirContext.close(), when the next request comes the singleton wont work as the dir context is already closed, hence it will create a new dir context for each requests. Which breaks the singleton concept, hence how we can ensure the singleton works fine even with DirContext.close()?
I am using Java Swing to create a GUI. I have some radio buttons on a JFrame that gets opened when the user makes a certain selection. I want to read a config file to have the radio buttons selected or deselected when the form is opened to indicate the current state of the radio button based on the saved config file.
How do I go about setting the radio button as selected (visibly selected) when I open up the JFrame?
I was trying to use RadioButton.setSelected(True); but this doesn't actually visibly select the radio button.
I want to know if I can get the entire log4j.properties file constructed in Java code. I am not talking about configuring the logger using Java code.I have a logger that is already configured using a file. I want to get access to either Logger or LogManager (any other?) class and print the current configuration that is in memory.
View Replies View RelatedWhat step to know to develop software..
View Replies View RelatedIn a program I created, I'm using a text file that contains some texts needed for the program. The method relevant to this is something like the following.
private String wordgen(){
try {
BufferedReader reader = new BufferedReader(new FileReader("src/Resources/adjectives.txt"));
Random rand = new Random();
int low = rand.nextInt(400);
String fil="";
int i=0;
while(i!=low){
[Code]...
The program runs fine in netbeans project but once the jar is created it does not corporate with the text file. ("null" is returned) How can I attach text files to jar and exe?
I need to transformation the txt files into xml files, but each row txt files don't have same elements, for example the first book is composite one author
<books>
<book>Title</book>
<price>price</price>
<author>Author</author>
</books>
but the second book is composite two author
<books>
<book>Title</book>
<price>price</price>
<author>Author</author>
<author>Author2</author>
</books>
I would have the xml files with the number of authors variables, I can use JAXB for my problem?or not?
<script type="text/javascript">
function CompareDates(id)
{
var monName = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec");
var d = new Date(id);
var curr_date = d.getDate();
[code]....
why the default date format that the textbox accepts is in 'mm/dd/yyyy'.For example if i entered "13-05-2014" then it would return an error stating date is invalid.If i entered "12-05-2014" then it would return "5 Dec, 2014".I did not declare any dateformat anywhere except for the datepickers which as shown above, is 'd MMM, yyyy'.Before this happened i trialed and error many different kind of codes to try to validate the date however it all didnt work and so i reverted it all back to the original codes.Last time the dateformat that the textbox accepted was 'dd/mm/yyyy' and it worked fine with my javascript function except the validation part.
Now it still works except that the dateformat changed to 'mm/dd/yyyy'.I did try to use console.log to find out what's wrong but there were no error messages.Why has the dateformat changed by itself?
I'm doing a project in JSP and Oracle..Here in my project there are two types of department.. Accounts and Sales.. Accounts department is able to download some pages to Excel format and it is working properly.. now in the sales they have to download in pdf format.. then only it is possible to send to the HO..now what they are doing is downloading the JSP page in excel format and converting to pdf manually using the Acrobat Printer.. is that possible to change to pdf format.. for converting to excel format.. i'm just using 2 linesand it is here
<%@ page language="java" session="true" import="java.sql.*" import="java.lang.*" contentType="application/vnd.ms-excel" %><%response.setHeader("Content Disposition","attachment; filename=test.xls");%>
in the filename side i chaged to test.pdf.. and in the contentType i changed to Acrobat readerand it is downloading but cannot view the content
I am getting the following error:
Exception in thread "main" java.util.MissingFormatArgumentException: Format specifier '.2f'
The line it is referring to is:
System.out.println("
Toppings: ");
for (int i = 0; i < toppings.size(); i++) {
System.out.format("%-15s£%.2f
",BBQSpecial.getToppings().get(i)
.name(), BBQSpecial.getToppings().get(i).getCost());
When trying to convert the time zone of a date I encountered the log below. java.lang.IllegalArgumentException: Cannot format given Object as a Date..Here is what my code looks like:
1. First I will get the date from the email header by the following code.
String messageDate = (String) mail.headers["Date"];
Output: Wed, 4 Jun 2014 18:30:05 +0800
2. Next I will convert the timezone to EST.
SimpleDateFormat timeZoneConvert = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z");
timeZoneConvert.setTimeZone(TimeZone.getTimeZone(" EST"));
String l_MailDateEST = timeZoneConvert.format(messageDate.trim());
Once the code run I encounter the said error.
I want to create a quiz in java in which questions and options will be retrieved from mysql database.I want the options to be in drop down list format.And I am using jsp for presentation layer and all the connections with database are in java..how to retrieve the options from database to drop down menu...
View Replies View RelatedI am able to get Cpu speed using my GetProcessorSpeed method and It returns this output 1796. How can apply this pattern "#.##". I am trying something like this.
Format formatter=new DecimalFormat("#.##");
formatter.format(MainClass.GetProcessorSpeed());
label2.setText(formatter.toString());
im making a javabean for stopwatch which works perfectly, but i want in the property descriptor format, so the user can change its format.
currently i have;
private String displayFormat = "MMMM d, yyyy h:mm:ss";
private SimpleDateFormat formatter;
public synchronized void setDisplayFormat(String newFormat) {
String oldFormat = getDisplayFormat();
try {
formatter.applyLocalizedPattern(newFormat);
timerHasPinged();
[code]....
currently the timer works its format is in 00:00 minutes:seconds, but i want it to start as MMMM d, yyyy h:mm:ss, for example March 17 2014 00:00:01, so only one second has passed here. i believe the set and get format method is fine but the timerhaschanged needs to change as this is where the format takes place.
Alright, so let's say I have this string. I want to make it so that the string for this variable has to follow a certain format.
For example, "AAA-B", where the A's are a digit 0-9, the - is always in the same spot, and B is a letter but only from A-M. All of this for a single instance variable.
Is this possible? How could I go about doing this.