99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫159.251編程、代做Java程序語言

時(shí)間:2023-11-15  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


 

159.251 - Software Design and Construction

Assignment 2 (22%)

Deadlines

You must submit your final work using the stream submission system no later than Sunday 19

November 2023. The penalty is 10% deducted from the total possible mark for every day delay

in submission (one day late – out of **%, two days late then out of 80% … etc.).

You are expected to manage your source code, this includes making frequent backups. It is

strongly recommended (but not required) to use a private git repository for this assignment,

and commit as frequently as possible. “The Cat Ate My Source Code” is not a valid excuse for a

late submission.

How to submit

1. Upload a zip file consisting of:

a. The Maven project folder (inc. pom.xml)

b. performance-analysis.pdf -measure time and memory consumption

c. coverage.pdf/html - the pdf or html version of the coverage report created by

Maven

2. upload this file to stream - note: the max upload size is set to 20 MB

3. verify the submission: download the zip file, unzip it into a new folder and inspect

content, run Maven from the command line, check the output including generated jar

files

Task

Work individually to create the following program in Java.

Create a project assign251_2 using the Maven project layout, and within this project, create a

project that implements custom appender and layout objects for Log4j. For this, you will need to

create an appender and layout that work with the other Log4j objects (i.e. implementing

relevant Log4j abstract classes or interfaces), test them and run profiling tools on them to gauge

their correctness and efficiency.

Note, there is no main class for this project, it will be run via your tests from sections 3 and 4.

You may want to consider a test-driven development methodology, where your first step is to

start with section 3 and work backwards. This will allow you to check that your classes are

working correctly as you go.

1. Implement a log4j appender - assign251_2.MemAppender [7 marks]

In this task, you will need to implement a custom log4j appender, which can be used directly

with the log4j logger. This MemAppender, unlike normal appenders, stores logs in memory and

prints them on demand. There is a limit to how many log events will be kept in memory (this

should be configurable), and if the maximum is reached, the oldest logs should be deleted.

Implementation details:

- It enforces the singleton pattern.

- It stores the LoggingEvents in a list. This is supplied by dependency injection (note: if

you have already created a default, that is okay).

- It will need a layout. This will need to be able to be supplied when the instance of an

MemAppender is obtained, and via the setLayout() method. If a layout is not supplied,

and code calling it is needed, appropriate precondition checks should be used (as some

code may not use the appender with the layout, so it is a valid option not to supply one,

as long as you don’t use any functionality that requires it).

- There are three ways to get information about the LoggingEvents that it stores:

a. Call the method getCurrentLogs() which will return an unmodifiable list of the

LoggingEvents.

b. Call the method getEventStrings() which will return an unmodifiable list of

strings (generated using a layout stored in the MemAppender).

c. Call the method printLogs() which will print the logging events to the console

using the layout and then clear the logs from its memory.

- It has a property called maxSize, which needs to be configurable. When this size is

reached, the oldest logs should be removed to make space for the new ones.

- The number of discarded logs should be tracked, and can be accessed using

getDiscardedLogCount(). This should be stored as a long type, as there may be many

discarded logs.

Note: Be careful to observe the DRY principle - there are overlapping requirements above.

3.5 marks Correct implementation of the singleton pattern and dependency injection

options for the list and layout.

2 marks Correct implementation of the information printing / collection methods,

along with sensible precondition checks where appropriate.

1.5 mark Correct implementation of maxSize and associated features.

2. Implement a layout - assign251_2.VelocityLayout [3

marks]

a. VelocityLayout basically works like PatternLayout, but uses Velocity as the

template engine. This layout should work with log4j appenders as well as the

MemAppender.

b. Variable to be supported:

i. c (category)

ii. d (date using the default toString() representation)

iii. m (message)

iv. p (priority)

v. t (thread)

vi. n (line separator)

c. This means that the variable syntax is different, e.g. use $m instead of %m

d. VelocityLayout should have options to set its pattern both in the constructor and

via a setter. An example string pattern could look like:

“[$p] $c $d: $m”

3. Write tests that test your appender and layout in combination with different loggers,

levels and appenders [4 marks]

a. Use JUnit for testing your appender and layout. Aim for good test coverage and

precise asserts.

b. Use the tests to show both the appender and layout working with different

combinations of built-in log4j classes as well as with each other.

c. Tests should be stored in the appropriate locations according to the Maven folder

structure.

4. Write tests to stress-test your appender/layout by creating a large amount of log

statements [6 marks]

a. Create a separate test class for stress tests.

b. Use these tests to compare the performance between MemAppender using a

LinkedList, MemAppender using an ArrayList, ConsoleAppender and

FileAppender - measure time and memory consumption (using JConsole,

VisualVM or any profiler)

c. Consider how to output your logs in such a way that makes comparisons

between the MemAppender and other appenders sensible.

d. Use these scripts to compare the performance between PatternLayout and

VelocityLayout

e. Stress tests should test performance before and after maxSize has been

reached, and with different maxSize values.

i. parameterised tests may be helpful here.

f. Write a short report summarising your findings (embed screenshots of memory

usage charts in this report taken from VisualVM). The report name should be

performance-analysis.pdf

g. Measure your test coverage of the written tests by generating branch and

statement coverage reports using Jacoco or Emma. Submit this report with your

project (should be placed under ~/target/ folder”

Note that the marks for this section will be based on your reporting, the effectiveness of your

stress tests in probing into the efficiency of the classes, and the overall integration testing,

checking that these classes work in combination with other relevant out-of-the-box classes.

5. Write a Maven build script [2 marks]

a. The Maven script should be used to build the project including compiling, testing,

measuring test coverage, and dependency analysis. All dependencies should be

managed with your maven build.

b. Use the jacoco Maven plugin for measuring test coverage.

Hints

● You can use any development environment you prefer, as it is a Maven project.

● Library approved list: only the following libraries can be used: Apache log4j, Apache

Velocity, JUnit 5, Google Guava, Apache Commons Collections, JaCoCo (for code

coverage).

Penalties

1. Code that is not self-documenting, or long or complex methods.

2. Violating the Maven standard project layout or Java naming conventions.

3. Use of absolute paths (e.g., libraries should not be referenced using absolute paths like

“C:\\Users\\..”, instead use relative references w.r.t. the project root folder)

4. References to local libraries (libraries should be referenced via the Maven repository)

5. Use of libraries not on the whitelist

Bonus Question [2 marks]

You can get 100% for the assignment without this. This will give you additional marks up to the

maximum if you lose some elsewhere.

Create an MBean object for each instance of the MemAppender to add JMX monitoring to this

object, the properties to be monitored are

1. the log messages as array

2. the estimated size of the cached logs (total characters)

3. the number of logs that have been discarded

Marking Rubric

Your assessment will be based on the following criteria:

Criteria Mark

Implementation of log4j appender assign251_2.MemAppender 7

Correct implementation of the singleton pattern and dependency injection

options for the list and layout.

3.5

Correct implementation of the information printing / collection methods,

along with sensible precondition checks where appropriate

2

Correct implementation of maxSize and associated features. 1.5

Implementation of layout assign251_2.VelocityLayout 3

Correct use of the Velocity template engine 1

Works with appenders and MemAppender 1

Supports listed variables 1

Testing the implemented appender and layout 4

Use of Junit with good coverage and precise asserts 2

Tests show that the appender and layout work with different combinations of

built-in log4j classes and each other

1.5

Tests stored in appropriate locations following Maven directory structure 0.5

Stress-testing your appender/layout 6

Separate class for stress tests 0.5

Comparison of performance between MemAppender using LinkedList,

ArrayList, ConsoleAppender and FileAppender - with measurements: time,

memory consumption for different maxSizes

2

Scripts to compare velocity and pattern layout 1

Report of stress test findings with an analysis of the stress test results and

measurements

2

Test coverage reports 0.5

Build management 2

Uses maven for dependency, coverage (using jacoco) 2

(extra/bonus)

Implementation of an MBean object for instances of MemAppender for JMX

monitoring of properties: log messages, estimated size of cached logs,

number of logs discarded

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

 

掃一掃在手機(jī)打開當(dāng)前頁(yè)
  • 上一篇:代做指標(biāo)定制選股公式代寫通達(dá)信山峰心理線副圖
  • 下一篇:GTSC2093代做、Java/Python編程代寫
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開團(tuán)工具
    出評(píng) 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                香蕉加勒比综合久久| 国产成人免费视频一区| 午夜精品久久久久久久久久久 | 欧美日韩国产区一| 色综合夜色一区| 91精品国产色综合久久不卡电影 | 4438x亚洲最大成人网| 91精品国产色综合久久不卡蜜臀| 717成人午夜免费福利电影| 性做久久久久久久免费看| 欧美色网站导航| 久久蜜桃香蕉精品一区二区三区| 色婷婷综合久久久中文一区二区| 日韩精品久久理论片| 青青国产91久久久久久| 成人自拍视频在线观看| 91久久精品国产91性色tv| 2020国产精品| 午夜精品久久久久久不卡8050| 精品午夜久久福利影院| 99精品在线观看视频| 欧美性猛片xxxx免费看久爱| 亚州成人在线电影| 97国产一区二区| 视频一区视频二区中文| 欧美国产1区2区| 青青草91视频| 久久久久久久久久久久电影| 色天天综合久久久久综合片| 久久成人免费网站| 日韩欧美在线影院| 天天综合色天天综合| 久久久综合网站| 97久久久精品综合88久久| 日韩精品一级二级| 成人欧美一区二区三区小说| 国产精品综合一区二区三区| 精品少妇一区二区三区日产乱码| 日韩免费观看高清完整版| 亚洲麻豆国产自偷在线| 懂色av中文字幕一区二区三区 | 欧美电影在线免费观看| 亚洲激情中文1区| 99精品在线免费| 九九九精品视频| 日韩电影网1区2区| 欧美欧美欧美欧美| 91老司机福利 在线| 日韩精品一区二区三区中文精品| 午夜不卡在线视频| 亚洲国产精华液网站w| 精品久久久网站| 欧美一区二区三区视频在线 | 精品午夜久久福利影院| 午夜不卡在线视频| 亚洲国产成人av好男人在线观看| 一区二区三区免费| 一本一道波多野结衣一区二区| 日本一区免费视频| 91麻豆国产福利在线观看| 国产成人一区在线| 国产综合色在线视频区| 中文字幕综合网| 91精品国产综合久久婷婷香蕉 | 日韩情涩欧美日韩视频| 91精品婷婷国产综合久久竹菊| 免费观看91视频大全| 一区二区三区自拍| 91丨porny丨户外露出| 日韩一区二区在线看片| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 欧美色精品在线视频| 亚洲视频免费在线| 中文字幕第一区二区| 精品裸体舞一区二区三区| 精品久久久久久久久久久久包黑料 | 国产欧美日本一区二区三区| 欧美高清视频www夜色资源网| 国产精品久久毛片a| 亚洲一区二区av电影| 91香蕉视频mp4| 国产成人超碰人人澡人人澡| 国产精品一区二区三区99| 午夜精品一区二区三区电影天堂| 日韩欧美三级在线| 欧美精品丝袜中出| 欧美一区二区三区免费在线看 | 国产成人av网站| 精品午夜久久福利影院| 激情综合色丁香一区二区| 日本在线不卡视频| 国模少妇一区二区三区| 国产成人在线网站| 国产精品自拍在线| 色综合久久久久久久久| 在线观看av一区| 日韩一区二区三区观看| 国产三级一区二区| 国产一区二区三区精品视频| 亚洲免费观看高清完整版在线观看熊| 欧美三级电影在线看| 欧美在线三级电影| 欧美大片拔萝卜| 国产精品久99| 国产一区999| 色吊一区二区三区| 日韩一区二区三区在线| 国产三级欧美三级| 偷拍一区二区三区| 风间由美一区二区三区在线观看| 视频一区二区三区在线| 久久99久久久欧美国产| 91在线高清观看| 日韩免费高清av| 亚洲欧美视频一区| 麻豆极品一区二区三区| 91日韩在线专区| 久久久久99精品一区| 中文文精品字幕一区二区| 青青草精品视频| 91在线国产福利| 久久综合狠狠综合久久综合88| 欧美高清视频一二三区| 久久久美女毛片| 亚洲图片欧美色图| 成人精品免费视频| 色视频欧美一区二区三区| 中文字幕一区二区三区在线观看| 国产农村妇女毛片精品久久麻豆 | 日韩精品一级中文字幕精品视频免费观看 | 亚洲最新视频在线观看| 国内外成人在线| 欧美日韩视频在线观看一区二区三区| 成人午夜激情片| 精品久久久久久久久久久久包黑料| 欧美一区二区视频网站| 国产精品二区一区二区aⅴ污介绍| 国产精品伦理一区二区| 麻豆成人免费电影| 欧美一区二区私人影院日本| 欧美日韩你懂得| 日韩视频不卡中文| 国产麻豆精品一区二区| 日韩一级黄色大片| 青青草97国产精品免费观看 | 亚洲美女一区二区三区| 国产精品资源站在线| 久久综合九色综合97婷婷| 香蕉av福利精品导航| 国产精品系列在线观看| 国产精品无遮挡| 色综合久久综合网97色综合| 亚洲免费观看高清| 欧美一级黄色录像| 精品综合久久久久久8888| 国产精品看片你懂得| 色综合久久久久久久久| 麻豆国产一区二区| 国产免费久久精品| 正在播放亚洲一区| 久久精品国产**网站演员| 亚洲视频一区在线观看| 欧美天天综合网| 成人综合婷婷国产精品久久免费| 欧美在线免费播放| 国产欧美日韩精品一区| 欧美自拍丝袜亚洲| 岛国精品在线观看| 亚洲欧美福利一区二区| 26uuu精品一区二区在线观看| 亚洲亚洲人成综合网络| 欧美精品乱码久久久久久按摩| 亚洲精品在线免费观看视频| 91污在线观看| 久久精品国产第一区二区三区| 成人涩涩免费视频| 亚洲一区二区五区| 日韩三级中文字幕| 午夜久久福利影院| 亚洲免费观看高清| 日韩三级在线观看| 色播五月激情综合网| 精品午夜一区二区三区在线观看| 欧美三级中文字| 国产在线一区二区综合免费视频| 精品国产亚洲一区二区三区在线观看| 亚洲欧美日韩国产成人精品影院| 日本不卡一二三区黄网| 国产女同性恋一区二区| 欧美老肥妇做.爰bbww视频| 麻豆精品视频在线| 一区二区三区在线不卡| 日本韩国精品在线| 国内久久精品视频| 国产精品国产三级国产专播品爱网| 波多野结衣在线一区| 麻豆国产精品一区二区三区 | 香蕉乱码成人久久天堂爱免费| 欧洲日韩一区二区三区| 国产一区二区三区精品视频|